Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix CheckboxFocusClickTest on Firefox (#9397) | Aleksi Hietanen | 2017-07-11 | 1 | -4/+5 |
| | |||||
* | Fix displaying Grid sort order set from server (#9530) | Teemu Suo-Anttila | 2017-07-11 | 2 | -67/+36 |
| | | | Fixes #8316 | ||||
* | Add handler for row height changing in Grid | Teemu Suo-Anttila | 2017-07-11 | 2 | -8/+16 |
| | | | Fixes #9488 | ||||
* | Show empty selection caption in ComboBox (#9468) | Teemu Suo-Anttila | 2017-07-11 | 3 | -1/+23 |
| | | | Fixes #9079 | ||||
* | Fix resetting of last filter in VComboBox (#9381) | Matti Tahvonen | 2017-07-11 | 1 | -0/+26 |
| | | | | | | Currently the reset method resets the lastFilter as well and then the logic thinks items don’t need to be refreshed when popup is reopened. Fixes #9027 Fixes #7790 | ||||
* | Properly init client-side data in GridDataChangeHandlerTest | Teemu Suo-Anttila | 2017-07-11 | 1 | -1/+2 |
| | |||||
* | Make clicking checkbox label call focus listeners (#9271) | Knoobie | 2017-07-11 | 2 | -0/+69 |
| | | | | | Fixes the remaining issue from #3944 for Firefox so that a click on the checkbox label calls the focus listener. Fixes #9290 | ||||
* | Fix issues in Grid with undefined height (#9104) | Teemu Suo-Anttila | 2017-05-08 | 2 | -0/+113 |
| | |||||
* | Fix client-side memory leak caused by Grid events (#9103) | Aleksi Hietanen | 2017-05-08 | 1 | -0/+40 |
| | | | | | | | Refactors AbstractGridKeyEvent, AbstractGridMouseEvent and their descendants to follow the pattern used in other GWT DomEvents. Fixes #7633 | ||||
* | Correctly set ListSelect style names | Artur | 2017-05-08 | 2 | -0/+147 |
| | | | | Fixes #8901 | ||||
* | Notify a resource load listener many times if it has been added many times ↵ | Artur | 2017-05-08 | 2 | -0/+79 |
| | | | | | | (#9075) This is what the javadoc promises and what DependencyLoader relies on | ||||
* | Provide GridLayout size and cell elements to JS and TB (#9019) | Artur | 2017-05-08 | 2 | -0/+116 |
| | |||||
* | Update Chrome version in VerifyBrowserVersionTest | Aleksi Hietanen | 2017-05-08 | 1 | -1/+1 |
| | |||||
* | Correctly set style names for NativeSelect (#9006) | Artur | 2017-05-08 | 1 | -0/+44 |
| | | | | Fixes #9005 | ||||
* | Fix Editor not saving values by pressing Enter (#8946) | Stephen Wellington | 2017-05-08 | 2 | -0/+44 |
| | | | | Fixes #8945 | ||||
* | Fix column indexing when setting a renderer (#8976) | Teemu Suo-Anttila | 2017-05-08 | 2 | -2/+57 |
| | | | | Fixes #8943 | ||||
* | Include charset in text/html responses (#8777) | Artur | 2017-03-30 | 1 | -2/+1 |
| | | | | Fixes #8775 | ||||
* | Fix Panel.setScrollTop() for large values (#8563) | Olli Tietäväinen | 2017-03-30 | 2 | -0/+103 |
| | | | Fixes #1149 | ||||
* | Fix NativeSelect inner component size (#8737) | Ilia Motornyi | 2017-03-30 | 3 | -0/+81 |
| | | | | Fixes #8702 | ||||
* | Fix data not being sent again when adding DataGenerators (#8947) | Teemu Suo-Anttila | 2017-03-30 | 2 | -2/+31 |
| | | | | | | * Fix data not being sent again when adding DataGenerators * Fix header component detaching, revert early header cleanup | ||||
* | Use computed style for Escalator size calculations (#8861) | Artur | 2017-03-30 | 2 | -0/+84 |
| | | | | | | | | | | | | | * Use computed style for Escalator size calculations The old method of using getBoundingClientRect does not work as expected if a transform has been applied to the element or one of its parents. For instance PopupView animates itself using a scale(0) -> scale(1) animation. When scale(0) is active, getBoundingClientRect will return 0 for all sizes while computed style ignores the transform and returns the expected value. Fixes #8793 | ||||
* | Make CloseSessionTest more stable with waitUntil (#8928) | Teemu Suo-Anttila | 2017-03-30 | 1 | -0/+3 |
| | |||||
* | Fix default header content changes on init (#8921) | Teemu Suo-Anttila | 2017-03-30 | 2 | -3/+17 |
| | | | | | This patch also enables an old test that was pending #8128 Fixes vaadin/framework8-issues#556 | ||||
* | Fix FlashExpansionTest (#8919) | Henri Sara | 2017-03-30 | 1 | -6/+5 |
| | |||||
* | Fix infinite loop in data communication (#8951) | Aleksi Hietanen | 2017-03-27 | 2 | -0/+78 |
| | | | Fixes #8479 for Vaadin Framework 8.0 | ||||
* | Fix Flash expanding with percentage sizing (#8898) | Olli Tietäväinen | 2017-03-22 | 2 | -0/+93 |
| | | | | | Allows Flash embed to expand if percentage dimensions given Fixes #4035 | ||||
* | Support data-location attribute in CustomLayout (#8866) | Henri Sara | 2017-03-22 | 3 | -0/+90 |
| | | | Fixes #8416 | ||||
* | Add tests for non-compatibility Grid | Teemu Suo-Anttila | 2017-03-16 | 2 | -0/+112 |
| | |||||
* | Always calculate Escalator max row count the same way (#8740) | Artur | 2017-03-16 | 4 | -2/+180 |
| | | | | | | | | | | | | | | * Rename getMaxEscalatorRowCapacity to describe what it does * Always calculate Escalator max row count the same way This changes Escalator to not take a horizontal scrollbar into account when trying to determine "maximum visible rows". This will add another row, compared to previous versions, when there is a horizontal scrollbar. In reality, it would likely make sense to always add 10 more rows to have some buffer above and below the visible area. Fixes #8661 | ||||
* | ApplicationRunnerServlet to correctly get last modified application (#8852) | Ahmed Ashour | 2017-03-16 | 1 | -2/+1 |
| | | | Also, change README.txt to the correct test port 8888 | ||||
* | Remove unnecessary width calculation on Grid initial render (#8848) | Henri Sara | 2017-03-16 | 4 | -0/+176 |
| | | | | | | | Do not calculate column widths unnecessarily, especially for columns with fixed width. Fixes #8678 | ||||
* | Allow changing renderers after column creation (#8841) | Teemu Suo-Anttila | 2017-03-16 | 2 | -0/+153 |
| | | | | Closes #8250 | ||||
* | Fix removing rows from the middle of Escalator (#8826) | Pekka Hyvönen | 2017-03-16 | 3 | -1/+44 |
| | | | | | | * Fix removing rows from the middle of Escalator Fixes #8825 | ||||
* | Correct license location | Ahmed Ashour | 2017-03-16 | 10 | -159/+120 |
| | |||||
* | Correctly adjust upload button borders inside a component group (#8817) | Artur | 2017-03-16 | 2 | -0/+97 |
| | | | | * Correctly adjust upload button borders inside a component group | ||||
* | Fix detach of grid when it contains frozen columns (#8803) | Artur | 2017-03-16 | 4 | -66/+136 |
| | | | | | | * Fix detach of grid when it contains frozen columns Fixes #8748 | ||||
* | Migrate Escalator tests for 8 (#8811) | Pekka Hyvönen | 2017-03-16 | 13 | -76/+64 |
| | | | | | | * Migrate Escalator tests for 8 Tests require reindeer / base for escalator to render correctly. | ||||
* | Fix ComboBox popup location on scrolled pages in IE/Firefox | Henri Sara | 2017-03-16 | 3 | -0/+156 |
| | | | Fixes #8778 | ||||
* | Fix Upload and push in TabSheet (#8782) | Ilia Motornyi | 2017-03-16 | 2 | -0/+80 |
| | | | | | Also fixes JSNI calls in compatibility Upload component. Fixes #8728 for the compatibility package | ||||
* | Avoid double unregister of columns on the client side | Artur Signell | 2017-03-16 | 2 | -0/+66 |
| | | | | | | | Columns unregister themselves from the grid through removeColumn, also when the whole grid is removed. Fixes #8748 | ||||
* | Fix some generics warnings in Eclipse | Ahmed Ashour | 2017-03-16 | 13 | -23/+27 |
| | |||||
* | Fix client-side error when Upload in TabSheet and Push | Johannes Tuikkala | 2017-03-16 | 2 | -0/+154 |
| | | | Fixes #8728 | ||||
* | Always load the deferred connector bundle (#8713) | Leif Åstrand | 2017-03-16 | 9 | -0/+332 |
| | | | | | | | | | | endDependencyLoading that was used for starting to load the deferred connector bundle is only called during regular application init if the theme wasn't yet loaded when the initial UIDL request finished. With this patch, the bundle is instead set to be loaded after the initial UIDL message has been completely processed. Fixes #4763 | ||||
* | Add support for rendering HTML in ButtonRenderer (#8606) | Artur | 2017-03-16 | 2 | -11/+34 |
| | |||||
* | Support Vaadin custom protocols in Vaadin-Refresh redirects (#8597) | Artur | 2017-03-16 | 4 | -0/+93 |
| | | | | A login page you want to redirect to is typically in the webapp root, which you can now refer to as "Vaadin-Refresh: context://login.html" | ||||
* | Translate "context://" to the context root of the web app | Artur | 2017-03-16 | 4 | -0/+74 |
| | | | Fixes #2523 | ||||
* | Restore column based width for compatibility selects | Teemu Suo-Anttila | 2017-03-07 | 4 | -0/+74 |
| | |||||
* | Picked all changes from 7.7 | Teemu Suo-Anttila | 2017-03-07 | 16 | -11/+363 |
| | | | | | Synchronises parts of compatibility package code to match 7.7 Picks suitable patches for 8 code as well | ||||
* | Remove tracking of unregistered connectors (#8153) | Aleksi Hietanen | 2017-03-07 | 3 | -141/+4 |
| | |||||
* | Use try-with-resources (#8757) | Ahmed Ashour | 2017-03-07 | 2 | -15/+15 |
| | | | To ensure the resource is automatically closed |