summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Improvements to ScrollDestination sanity checks (#11772) (#11776)8.9.2Anna Koskinen2019-10-282-8/+118
| | | | | | | | - The new top row logical index should always be within the logical range and high enough up to avoid leaving a gap if possible. - Added regression testing for using the different scroll destination types for scrolling to the top and to the bottom by index. Fixes #11732
* Made JavaDoc of updateSelection more precise (#11768) (#11773)Anna Koskinen2019-10-281-1/+2
| | | Addresses https://github.com/vaadin/framework/issues/11520
* Added missing NOTIFICATION_DARK (#11770) (#11775)Anna Koskinen2019-10-281-2/+8
| | | | | And corrected couple of typos Addresses https://github.com/vaadin/framework/issues/11492
* Fix the end limit of the allowed scrollTo rows. (#11771) (#11774)Anna Koskinen2019-10-281-1/+1
| | | | | | | | * Fix the end limit of the allowed scrollTo rows. (#11771) - Row index counts up from zero, data provider size counts up from one, as one would expect. If the two match we are already past the available range.
* Add note to setRenderer() JavaDoc about presentation provider (#11751) (#11763)Anna Koskinen2019-10-251-0/+3
| | | Addresses https://github.com/vaadin/framework/issues/10277
* Tweak a test to open Grid details row by clicking cell instead of row. (#11767)Anna Koskinen2019-10-251-7/+10
|
* Update chrome version to 78 (#11765) (#11766)Anna Koskinen2019-10-251-1/+1
|
* When ComboBox popup opens to the left accommodate margin/border/padding. ↵Anna Koskinen2019-10-243-8/+73
| | | | | (#11755) (#11762) Fixes #11718
* Make cancellation of uploads work regardless of Push configuration (#11743) ↵Anna Koskinen2019-10-246-13/+128
| | | | | | | | | | | | | | | | (#11760) - Checking the push configuration outside of session lock threw an AssertionError, so the push configuration is not checked anymore. - The original problem with cancelling Upload was due to a subtle ordering issue that depended on the Push configuration. In the case of PushMode.AUTOMATIC, a new StreamVariable was added by the `Upload` component _before_ the `FileUploadHandler` got a chance to remove the old `StreamVariable`. As a result, the `FileUploadHandler` actually removed the fresh `StreamVariable`, breaking future uploads. Fixes #11682
* Make sure expanding/collapsing updates expected cache size. (#11753) (#11761)Anna Koskinen2019-10-243-0/+165
| | | Fixes #11749
* Upload should preserve MIMEType after first selection (#11745) (#11759)Anna Koskinen2019-10-243-0/+162
| | | | | | | | | | | | | * Upload should preserve MIMEType after first selection Fix #11698 * Remove unused imports * Add sleep time in testing purposes * Getting a new instance of an input, after file is downloaded Exclude IE from tests. Throws https://stackoverflow.com/questions/23883071/unhandled-alert-exception-modal-dialog-present-selenium , but checked manually and it works
* Update release-note for maintenance8.9.1Zhe Sun2019-10-041-2/+2
|
* Correct usage of String.format(..) (#11704)Tatu Lund2019-10-041-5/+5
| | | Fixes https://github.com/vaadin/framework/issues/11701
* Removal of data communicator needs to happen before call to super.remove() ↵Tatu Lund2019-10-041-2/+2
| | | | | | | (#11710) Removal of data communicator needs to happen before call to super.remove() since super.remove() sets parent to null causing the NPE. Fixes https://github.com/vaadin/framework/issues/11617
* Added note in JavaDoc of removeColumn (#11725)Tatu Lund2019-10-041-0/+3
| | | | | | | | | | * Added note in JavaDoc of removeColumn https://github.com/vaadin/framework/issues/11722 * Merge branch 'master' into fix11722 * Merge branch 'master' into fix11722
* Catch and handle IllegalStateException (#11733)Tatu Lund2019-10-041-11/+18
| | | | | | | | * Catch and handle IllegalStateException Fixes https://github.com/vaadin/framework/issues/11730 * Renaming variables
* Make sure Firefox for iOS isn't detected as too old to function. (#11739)Felix Fontein2019-10-041-2/+6
| | | Change-Id: Iea13b958356b0246586bcb7e9969bc26db43bb96
* Update context menu addon version (#11735) (#11740)Zhe Sun2019-10-031-1/+1
| | | | * Update context menu addon version (#11735)
* Update release note to mention Java 11 support (#11697) (#11728)Zhe Sun2019-10-021-2/+3
| | | | * Update release note to mention Java 11 support
* Update Chrome version to 77 (#11727) (#11731)Zhe Sun2019-09-258-1/+1
| | | | | * Update Chrome version to 77 (#11727)
* print8.9.0Zhe Sun2019-09-111-0/+1
|
* Print the errors (#11717)Zhe Sun2019-09-111-0/+3
|
* Fix scrollTo for destination START and END and add regression testing. (#11711)Anna Koskinen2019-09-053-48/+356
| | | | | | | | | | | - Initial implementation erroneously assumed that ScrollDestination.START would only be used for scrolling up and ScrollDestination.END for scrolling down. That's obviously not what they are for, otherwise everyone would be using ScrollDestination.ANY. - Moved actual scrolling to within the helper method that originally only calculated the new scroll position. Parent method became too long otherwise. Fixes #11706
* Updated row and spacer handling for Escalator (#11438)8.9.0.beta3Anna Koskinen2019-08-3017-1078/+3277
| | | | | | | | | | | | | | | | | | | | | | | Updated row and spacer handling for Escalator. Main changes: - Spacers are only maintained and checked for rows that have DOM representation, and not at all if there is no details generator. This gives notable performance improvements to some particularly large Grids - Escalator no longer tries to trim away any rows that don't fit within the viewport just because a details row gets opened in Grid. This leads to some increase in simultaneous DOM elements, but simplifies the logic considerably. For example opening or closing details rows doesn't require checking the overall content validity beyond the details row itself anymore, but some repositioning at most. There are also no longer any orphaned spacers without corresponding DOM rows. - Spacers are better integrated into the overall position calculations. - Some public methods that are no longer used by Escalator or have changed functionality or order of operations. Any extending classes that tap into row, spacer, or scroll position handling are likely to need reworking after this update. - Auto-detecting row height is delayed until Escalator is both attached and displayed.
* Update release note for final release (#11689)Zhe Sun2019-08-061-2/+2
|
* Exclude element screenshot tests from IE11 (#11681)Zhe Sun2019-08-066-2/+57
|
* Additional updates and fixes for 8.9 branch (#11679)Zhe Sun2019-08-069-23/+35
| | | | | | | | * Release note update for 8.9 * Fix unstable tests in the branch * Code formatting
* Docs fixes and enlarge toleranceZheSun882019-08-052-5/+5
|
* Chrome 76 and update screenshotZheSun882019-08-05189-1/+1
|
* Update since tag8.9.0.beta2ZheSun882019-07-306-6/+6
|
* Update Spring addon to 3.2.1 (#11670)Zhe Sun2019-07-301-1/+1
|
* Update screenshot (#11669)Zhe Sun2019-07-301-0/+0
|
* Apply offset to column index depending on presense of selection column (#11667)Tatu Lund2019-07-302-1/+72
| | | | | | | | * Apply offset to column index depending on presense of selection column After testing this manually I noticed that offset correction needs to be negative * Add the testing UI
* Ensure the upload button has been disabled when set Enabled calling from ↵Zhe Sun2019-07-303-0/+306
| | | | | | | | | succeedL… (#11655) * Ensure the upload button has been disabled when calling from succeedListener with Push enabled * Add Tests to verify
* Prevent excessive getLogger() calls from markAsDirty() (#11664)Leif Åstrand2019-07-301-15/+24
| | | Fixes #10339
* Use https for Maven repositories (#11668)Stéphane Nicoll2019-07-3012-16/+16
| | | | * Use https for Maven repositories
* Ensure that VComboBox.selectedOptionKey gets initial selection. (#11665)Anna Koskinen2019-07-303-2/+91
| | | Fixes #10741
* Improvements to detail row index handling. (#11345)Anna Koskinen2019-07-3011-11/+1233
| | | | | | - Escalator should notify when an existing details row is moved to a new index. - Grid and DetailsManagerConnector should update their internal indexing when details manager index changes in Escalator.
* 11642 refresh pagelength 0 combobox items after dataprovider update (#11653)Olli Tietäväinen2019-07-306-6/+223
| | | | | | * Fixes #11642. ComboBox with pageLength 0 should be updated if DataProvider changes * added comments, fixed imports
* Ensure the selection has been changed before updating . (#11658)Anna Koskinen2019-07-302-11/+58
| | | | | | | - Initial fix attempt interfered with selection events, added regression testing for those and found a better way to ensure shift selection works on IE11 also with Windows 7. Fixes #11608
* Input prompt was renamed to placeholder (#11649)8.9.0.beta1Olli Tietäväinen2019-07-041-16/+16
|
* Fix unstable tests (#11648)Zhe Sun2019-07-045-19/+22
| | | | | * Fix unstable tests
* Sanitize caption used in Grid header (#11644)Zhe Sun2019-07-011-0/+2
| | | | * Sanitize input used in Grid header
* Fixes unstable/muted tests (#11640)8.9.0.alpha1Zhe Sun2019-06-284-15/+15
|
* Removed ';' in lambdas (#11628)Zhe Sun2019-06-271-4/+4
| | | | | | | | * Removed ';' in lambdas credits to @voltor * Merge branch 'master' into ZheSun88-patch-1
* Update release note and Since tag (#11639)Zhe Sun2019-06-273-4/+6
| | | | | | * Update release note for 8.9 * Missing Since
* OSGi: Removed static VaadinResourceService access in liferay-integration, ↵S.W2019-06-279-230/+418
| | | | | | | | osgi-integration (#11335) * Made VaadinResourceService a OSGi component, removed static access of OsgiVaadinResources
* Add Delay to unstable tests (#11638)Zhe Sun2019-06-273-5/+12
| | | | | | * Add Delay to unstable tests * Add sleep time
* Adding css class to Editor when on selected row (#11636)Tatu Lund2019-06-262-0/+33
| | | * Adding "v-grid-editor-selected" stylename in editor cell wrapper element when Grid is opened on selected row.
* Fixing upload handler error handling (#11630)Tatu Lund2019-06-251-2/+6
| | | | | | | | | | * Fixing upload handler error handling For some reason stream variable cleanup did not use UI.getCurrent(), despite current UI was set earlier in handleRequest, what I see specifically for this purpose. So I chanted this. This will address also issue #7289 Furthermore there was TODO in handle request about error handling. I interpreted this to refer to possible corner case, that UI is not found via session. In this case it is more appropriate throw UploadException and abort, than lat NPE happen. * Fixing exception type