summaryrefslogtreecommitdiffstats
path: root/client
Commit message (Collapse)AuthorAgeFilesLines
* Hide DragAndDropHandler in Grid to make vaadin-widgets compile (#16643)7.5.0.alpha1Leif Åstrand2015-03-252-251/+224
| | | | Change-Id: I231affa4a4242d3b958583c9b79a4f08be0d5de5
* Avoid using VButton because of vaadin-widgets dependencies (#17023)Leif Åstrand2015-03-251-3/+2
| | | | Change-Id: Id1d42ee9555600eb117feadddcc92151dc2c5e1c
* Revert "Redesign ComboBox filtering, highlighting and selection behaviour."Leif Åstrand2015-03-242-30/+37
| | | | This reverts commit acb889336f80227d609b194e56ac6ae3ead0d338.
* Revert "Moved accessibility shortcut handling to server-side. [#14843]"Leif Åstrand2015-03-241-1/+3
| | | | | | | | | | This reverts commit e88f71dd6d1d7634e3a90a7e53859ff6dc028e21. Conflicts: WebContent/release-notes.html uitest/src/com/vaadin/tests/components/window/CloseShortcutTest.java Change-Id: I1d4ed60ec4a194f6ed18fa5506134ef3a185a6cf
* Fixes Grid column reordering for IE8 (#17023)Pekka Hyvönen2015-03-231-17/+8
| | | | Change-Id: I44373a22fb279d5fd260fec0cfaf52d4a3f4e9a3
* Merge remote-tracking branch 'origin/master' into grid-7.5Leif Åstrand2015-03-236-329/+250
|\ | | | | | | Change-Id: I53218c269f0701cddd8279bf25c493950144f4cb
| * Make UIConnector.replaceTheme() and UIConnector.activateTheme() protected #17235John Ahlroos2015-03-201-3/+5
| | | | | | | | Change-Id: I4ee650efdc8683dd1d6fedf5e53460c48186ed88
| * Revert "Displaying tooltip in slot for touch devices (#15353)" (#17151)Leif Åstrand2015-03-172-125/+19
| | | | | | | | | | | | | | | | | | | | Should not have been merged since there were still stuff pending ("This patchset doesn't include styling for the error message") that was not addressed before submitting. This reverts commit 05fc5806e7946223e057ad7458a18dadceb0566f. Change-Id: Idd723f22f42e2e8ee71059b9591d44fafadea27e
| * Sanitize connectors for PopupDateField and DateField. (#17090)Sauli Tähkäpää2015-03-173-201/+226
| | | | | | | | Change-Id: I667796430eeaa0ddd8142b0c229fe133cd30cd49
* | Grid column hiding info from client to server #(17023)Pekka Hyvönen2015-03-223-9/+65
| | | | | | | | | | | | | | | | Fixes mismatched client-server API regarding ColumnVisibilityChangeEvent Adds and removes the column hiding toggle as needed when columns added / removed. Known bug when a hidable column added, column toggle won't get the caption of column. Change-Id: I708e19432dc822f713bf11f5b8e6eadb528a3961
* | Disable Sidebar API access since it will still be reworked (#17023)Leif Åstrand2015-03-201-2/+2
| | | | | | | | Change-Id: I86900955497ba8e713f48457a7b858f50f9eeb73
* | Fixes several issues with hidden columns in Grid (#17023)Pekka Hyvönen2015-03-204-47/+116
| | | | | | | | | | | | | | | | Makes sure that hidden columns are taken into account when calculating indices. This is because escalator doesn't know about hidden columns, thus need to convert cell indices to actual column indices in quite many places. Change-Id: I4c0f3097938ee9340a1922464e12ad7261084ecb
* | Fix various small issues discovered while reviewing APILeif Åstrand2015-03-205-8/+6
| | | | | | | | Change-Id: I196e490d5c5ae77ba895e0fca1b0d9160b6a7855
* | Restructure sidebar widget handling to work with custom content (#17023)Leif Åstrand2015-03-201-62/+67
| | | | | | | | Change-Id: Ib24d1536af89ce97b2117d813e0f75405df7dab7
* | Removes unnecessary todo logging (#16644)Henrik Paul2015-03-191-17/+0
| | | | | | | | Change-Id: I5992e6f48c472f252bfbcc8d7b4991ded15fd197
* | Merge remote-tracking branch 'origin/grid-detailsrow' into grid-7.5Henrik Paul2015-03-195-11/+280
|\ \ | | | | | | | | | Change-Id: I24df361a4f938b6ffe567aa290cc411ce194baba
| * | Adds details generator swap support for Grid (#16644)Henrik Paul2015-03-182-15/+22
| | | | | | | | | | | | Change-Id: I741970a7bcebd27d3aa28d608d767b4b4f063ae8
| * | Fixes a bug when scrolling a Grid with details open (#16644)Henrik Paul2015-03-183-16/+53
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | If the a row with an open details row was pushed out of the active row range, the component would be removed from the connector hierarchy on the server side but not on the client side. Vaadin gave a warning for this. This patch makes sure that the widget is properly deregistered when it gets outside of the active range pre-emptively. Change-Id: I2145e82a990ded31e4426e85e59edad9d4d4194f
| * | Grid's Details can now be Components (#16644)Henrik Paul2015-03-172-6/+149
| | | | | | | | | | | | Change-Id: If67dd2e86cf41c57f208a3691e2cb7a5a29c133c
| * | Server side Grid can open details on the client side (#16644)Henrik Paul2015-03-174-6/+81
| | | | | | | | | | | | Change-Id: Ibff5a83b3a09c7c530926dadae9138ba3823f27a
* | | Adds server side column hiding API to Grid (#17023)Henrik Paul2015-03-191-0/+4
| | | | | | | | | | | | Change-Id: Ic00e873176f499dfc45976439e09d712932775da
* | | Merge remote-tracking branch 'origin/grid-columnhiding' into grid-7.5Pekka Hyvönen2015-03-191-8/+296
|\ \ \ | | | | | | | | | | | | Change-Id: Ice80ed9d5a96d9de824cc932873b4e6a736459a8
| * | | Grid's columns hidable with toggles in the sidebar (#17023)Pekka Hyvönen2015-03-181-43/+190
| | | | | | | | | | | | | | | | | | | | | | | | There is know issue with hidden columns and reordering columns. Change-Id: If308c84aed5dd23c2c00cb38ed6bba41c6f1a28e
| * | | Display button for opening sidebar in Grid when hidable columns #17023Pekka Hyvönen2015-03-171-7/+148
| | | | | | | | | | | | | | | | Change-Id: I9dc1d5d8ede4984c2dd6f5fcc932bb987ce95dcb
| | | |
| \ \ \
*-. | | | Merge remote-tracking branches 'origin/grid-detailsrow' and ↵Henrik Paul2015-03-1715-461/+3753
|\ \| | | | | |/ / | |/| / | |_|/ |/| | | | | 'origin/grid-columnhiding' into grid-7.5 Change-Id: Ib8913f8e1b1b92198d79f8920c615addf77a15ba
| | * Client side API for setting a grid column hideable (#17023)Pekka Hyvönen2015-03-131-0/+34
| | | | | | | | | | | | Change-Id: I389d603210744ea02846a00ab893188b7953145f
| | * Client side event for grid's columns visibility change (#17023)Pekka Hyvönen2015-03-134-2/+151
| | | | | | | | | | | | Change-Id: I1965ca6c298366d89b1940a992788d042cf7a4aa
| | * Hide columns with client side API in Grid (#17023)Pekka Hyvönen2015-03-131-33/+98
| | | | | | | | | | | | | | | | | | For now, the width for spanned header/footer cells is broken after hiding their columns. Change-Id: I0833fb570fcad731776a88a183b3df45cbc19557
| | * Merge branch 'master' into grid-columnreorderPekka Hyvönen2015-03-0619-305/+706
| | |\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: uitest/src/com/vaadin/tests/components/grid/basicfeatures/GridBasicFeaturesTest.java uitest/src/com/vaadin/tests/widgetset/client/grid/GridBasicClientFeaturesWidget.java Change-Id: Ic77c717b9bbdcc38585382d4944ee4491aba3f7d
| | * | Dnd-reorder of spanned cells in grid header. (#16643)Pekka Hyvönen2015-03-061-31/+70
| | | | | | | | | | | | | | | | Change-Id: I6f2decbbfb393922c4852f5b05ac0d10589ee512
| | * | Take footer into account in column dnd-reorder (#16643)Pekka Hyvönen2015-03-041-6/+8
| | | | | | | | | | | | | | | | Change-Id: I0358d1b18f65d40325b6c1bc3f3e4d3b9249fb5f
| | * | Limit dnd-reorder of columns inside spanned headers. (#16643)Pekka Hyvönen2015-03-042-58/+103
| | | | | | | | | | | | | | | | | | | | | | | | Doesn't take footers into account, yet. Change-Id: I9c62ca97bcbdb852f2fe7ad7ea2e7de0f0ed02f8
| | * | Handle selection column oddity when dnd reordering columns (#16443)Pekka Hyvönen2015-02-273-8/+46
| | | | | | | | | | | | | | | | Change-Id: I7bb20fb98a79e77acc9073bc9c2210d1dc3fd49e
| | * | Handle spanned header cells when dnd reordering columns in grid. (#16643)Pekka Hyvönen2015-02-272-24/+106
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Prevents dragging columns from outside spanned cells to inside them, on any row. Currently prevents dragging columns inside spanned cells. Will change this later. Change-Id: Ie832b3c404a3afbcce0374f8b5088dc8cb124fb8
| | * | Support column reordering from all header rows. (#16643)Pekka Hyvönen2015-02-261-6/+8
| | | | | | | | | | | | | | | | Change-Id: I78a4a50b011576a026518a58c36822a383979986
| | * | Column reordering in Grid restricted to non-frozen columns. (#16643)Pekka Hyvönen2015-02-251-1/+22
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Can't drag frozen columns. Dragging no top of frozen column will keep drag element and drop marker on "right". Dropping on frozen column will drop the column to the right of the frozen columns. Change-Id: Ib04af96b21072e9f19dc7640a67bc68d49a9ae54
| | * | Adjust column reorder drop marker when auto scrolling grid. (#16643)Pekka Hyvönen2015-02-253-29/+118
| | | | | | | | | | | | | | | | Change-Id: I11377fb8b007c3c50c3e3bd1c29afcf8485431f0
| | * | Auto scroll when dnd reorder columns and cursor close to Grid edge. (#16643)Pekka Hyvönen2015-02-243-27/+720
| | | | | | | | | | | | | | | | Change-Id: I38c18d44afb6666677c1593541021d36c8cb2afc
| | * | Theming and UX for Grid column reordering. (#16643)Pekka Hyvönen2015-02-231-9/+36
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Show sorting and focus on the dragged header. - Keep the focused header/cell the same after drag. - Make the drop marker get the same color as the grid selection. - Make dragged header and the drag element theme customizable - Valo related theming: little opacity, proper positioning Change-Id: Ia1c6f72ef2c7b4333e64ac410e50ef3688461749
| | * | Update server side state when columns are reordered. (#16643)Pekka Hyvönen2015-02-181-9/+43
| | | | | | | | | | | | | | | | Change-Id: I96c65dbb96614a5f5782b747fb8588647211cf4b
| | * | Client side event for column reordering in Grid. #16643Pekka Hyvönen2015-02-163-0/+111
| | | | | | | | | | | | | | | | Change-Id: I40bb42c7a5a3e9f92051c03dc5fe91b83cd88db7
| | * | Drag and drop column reorder for default header row on client side Grid. #16643Pekka Hyvönen2015-02-132-1/+448
| | | | | | | | | | | | | | | | Change-Id: I94558915859aaa91bdd041da12094bc0dcc53e62
| * | | Merge branch 'master' into detailsrowHenrik Paul2015-03-126-143/+158
| |\ \ \ | | | | | | | | | | | | | | | Change-Id: Ie0556ae8d56596d5e1894b3a62d39b0afe13b5a3
| * | | | Double-opening Grid details row doesn't change height (#16644)Henrik Paul2015-03-121-4/+54
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The bug caused an arbitrary height to be set for the details row if an already-open details was reopened. Change-Id: I1d764511d2829416491eb92abf8565288252f953
| * | | | Fixes a bug with escalator.scrollToRow and spacers (#16644)Henrik Paul2015-03-051-3/+3
| | | | | | | | | | | | | | | | | | | | Change-Id: I9e148cf81d393cc489c20bf0265f4a3bc6fed069
| * | | | Merge branch 'master' into HEADHenrik Paul2015-03-053-118/+253
| |\ \ \ \ | | | | | | | | | | | | | | | | | | Change-Id: I85867836aba8bd2cb51729fecdb1c449c439d3e7
| * \ \ \ \ Merge branch 'master' into HEADHenrik Paul2015-03-0418-190/+454
| |\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | Change-Id: Id48abba25a16fe7f8e679e5ce2ab3ab536951676
| * | | | | | Adds support for -1 row index Escalator spacers (#16644)Henrik Paul2015-03-032-3/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Change-Id: Iced2f089785983ce2ef1d2225517156cec4a7db4
| * | | | | | Escalator spacers are sized and placed like "fixed" (#16644)Henrik Paul2015-03-032-22/+97
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The width of a spacer is now 100% of the viewport (width of escalator minus possible scrollbars), and and are always horizontally frozen with the viewport. Change-Id: I6616747784cdb61551e144d941526dee815a7ef9
| * | | | | | Adds tests and JavaDoc regarding Escalator's spacers (#16644)Henrik Paul2015-03-032-1/+34
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Change-Id: I9b35a48df8b4e9801c26a25eb1ccce5351c61ddd