aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* Updated browsers' screenshots (#11986)Tarek Oraby2020-05-08688-0/+0
| | | Co-authored-by: Anna Koskinen <Ansku@users.noreply.github.com>
* Fix indexing issue in Grid resize when scrolled to bottom. (#11984)Anna Koskinen2020-05-082-0/+35
| | | Fixes #11893
* Fix incorrect position of column selector in MPR (#11946)Mehdi Javan2020-04-165-4/+8
| | | | | | | | | | | | * Change ContextMenu position from absolute to fixed * Use getBoundingClientRect to get the coordinates of columnSelector in VScrollTable when the context menu is being opened * Update TableTooManyColumnsTest screenshot * Upgrade Chrome version in VerifyBrowserVersionTest * Update ValoThemeUITest-sliders screenshot
* Fix generics type in test (#9977) (#11819)Anna Koskinen2019-11-211-1/+1
| | | This fixes a compilation error with Eclipse Oxygen.
* Added missing package statement. (#11820)Anna Koskinen2019-11-211-1/+3
|
* Use APPLICATION_SCOPE for the session lock (#11804)Tatu Lund2019-11-133-4/+44
| | | | | | | | | | * Use APPLICATION_SCOPE for the session lock To be able to do this, relevant methods in VaadinService are made protected so that VaadinPortletService can override them. The Vaadin session itself is also stored in APPLICATION_SCOPE. The default scope is PORTLET_SCOPE, so lock would otherwise not be in sync with the session.
* Tweaked layouttester tests to be more informative. (#11800)Anna Koskinen2019-11-12120-45/+496
|
* Cherry pick PR #11791 from Vaadin 8 (#11798)Tatu Lund2019-11-112-2/+17
| | | | | | * Cherry pick PR #11791 from Vaadin 8 See: https://github.com/vaadin/framework/pull/11791
* Fix issue where Chrome refused to select text in Table (#11709)samulivaadin2019-11-071-3/+3
|
* Add a missing letter (#11677)Anastasia Smirnova2019-11-061-1/+1
| | | Fixes https://github.com/vaadin/framework/issues/11409 for a V7 branch
* Tests updated to Chrome 78 (#11794)Anna Koskinen2019-11-06280-8/+13
|
* Sanitize caption used in Grid header Tatu Lund2019-07-021-0/+2
| | | Cherry pick of https://github.com/vaadin/framework/pull/11644
* Table / TreeTable multiselect disabling of touch detection (#11641)Olli Tietäväinen2019-07-019-6/+248
| | | | | | * Fixes #11601. Add toggle for disabling touch detection on table multiselect. * fix tests
* Test with browser update to Chrome 75 (#11633)Zhe Sun2019-06-2643-132/+195
| | | Fixes failed tests
* Override reserved globals for FirefoxArtur Signell2019-05-231-0/+872
| | | | Fixes #11597
* pick Panel HTML caption changes from master (#11589)Olli Tietäväinen2019-05-216-9/+77
|
* fixes #11437 for V7 (#11588)Olli Tietäväinen2019-05-201-1/+6
|
* Fix broken links in documentationjuhopiirainen2019-05-174-5/+6
|
* Fix validation failures. (#11578)Sun Zhe2019-05-16104-1/+6
| | | | | | * Correct failing test and add sleep * Update screenshots
* Change VSlider to use Event.ONKEYDOWN with Firefox 65+ (#11506)7.7.18Tatu Lund2019-04-031-5/+9
| | | Fixes #11502
* Fixes a Grid issue that breaks sorting. (#10999)duffrohde2019-04-023-1/+37
| | | | | | | | | | | | * Fixes a Grid issue that breaks sorting. When multi-select has been enabled and disabled a number of times, sorting on the first column in a Grid is broken. Unregistering a click handler on the header solves the problem. * Added a test checking that sorting of a grid column still works after having enabled and then disabled multi select mode. The grid is configured with an extra header row containing a text box since it triggers an exception if the header click handler for the multi select column is not removed. * Remove an unused import that was added by mistake
* Change VMenuBar to use KeyDownHandler with Firefox 65+ (#11505)Tatu Lund2019-03-291-2/+2
|
* Change VCalendarPanel to use KeyDownHandler with Firefox 65+ (#11507)Tatu Lund2019-03-291-2/+2
| | | Fixes #11502
* Change VMenuBar to use KeyDownHandler with Firefox 65+ (#11508)Tatu Lund2019-03-281-6/+10
| | | #11502
* Change VTree to use KeyDownHandler with Firefox 65+ (#11509)Tatu Lund2019-03-281-2/+2
| | | Fixes #11502
* Catch exception that is thrown when Grid is scrolled during operation (#11467)7.7.17Tatu Lund2019-03-111-7/+13
| | | | IllegalStateException may occur if user has scrolled Grid so that Escalator has updated, and row under Editor is no longer there Fixes https://github.com/vaadin/framework/issues/11463
* Fix typo (#11466)Mehdi Javan2019-02-271-1/+1
|
* added missing since 7.7.16 (#11418)7.7.16Olli Tietäväinen2019-01-111-2/+2
|
* Fixes #11369 (#11402)macprzepiora2019-01-111-0/+16
| | | Clear contents of iframe clone that is in a Window so that when it's reattached to DOM we don't get 404
* copied waitUntil to selectMenuPath from FW8 (#11415)Olli Tietäväinen2019-01-101-0/+9
|
* update to Jetty 9.4 (#11411)Olli Tietäväinen2019-01-081-1/+1
|
* V7: Improve VMenuBar click handling logic (#11362)Anastasia Smirnova2018-12-146-95/+222
| | | | | | | | | | | | | | | | | | | | | | * Improve VMenuBar click handling logic Backport to V7: During `updateFromUIDL` inside MenuBarConnector we empty and re-instantiate the components of MenuBar. When we are modifying the Menubar from the BlurEventListener of another component, we ,by this, remove widgets, therefore clickEvent is not fired and the action of the MenuItem is not proceed as a result. (The BlurEvent is fired before the click event in the chain of events. ) To improve the situation, we catch onMouseDown event , which is fired before BlurEvent,by assigning mouseDown flag to true. Then if no click event has yet happened, we delay the execution of update inside `updateFromUIDL` by default 500 ms. Then if click event occurs, it proceeds normally. The time can be increased/decreased using setter. There is no delay, if we are clicking on the MenuBar as usual or no Blur listener is set. This change allows setting descriptions preserving the action from the MenuItem (cherry picked from commit 22cc85c76f28a762685204911ad66f95bda2d296) * Improve VMenuBar click handling logic Add missing files from the first commit Backported to V7: (cherry picked from commit 22cc85c)
* 7 7 ie11 screenshots (#11364)Olli Tietäväinen2018-12-111-1/+1
| | | 7.7 reference screenshot directory
* ie11 screenshots (#11357)Olli Tietäväinen2018-12-05252-0/+0
|
* updated Firefox screenshots (#11349)Olli Tietäväinen2018-12-03471-0/+0
|
* removed tests that are broken on headless Chrome which doesn't allow ↵Olli Tietäväinen2018-11-296-316/+0
| | | | resizing (#11342)
* testbench-api is generated later in the release process nowadays; if it's ↵Olli Tietäväinen2018-11-271-1/+1
| | | | listed here, it will give a red light for the staging report (#11336)
* Test fixes and IE 10 screenshots (#11277)sergey-vaadin2018-11-16423-15/+7
|
* Add note about JRE9+ not being supportedOlli Tietäväinen2018-11-141-2/+3
| | | Update release notes by mentioning JRE9+ not being supported
* Fix Combo Box filtered on Property not showing results when page length is ↵Vlad2018-11-083-1/+109
| | | | | | | | | | | | zero (#11247) * Fix #11246 Take zero pageLength into account when calculating filtered ComboBox contents. * Create ComboboxPageLengthZeroFilterTest.java * add UI tests for fix
* Update datamodel-properties.asciidoc (#11223)Anastasia Smirnova2018-11-081-1/+1
| | | | | | | | | | * Update datamodel-properties.asciidoc Fixes : https://github.com/vaadin/framework/issues/11095 * Update datamodel-properties.asciidoc Remove duplicate ```setConverterFactory```
* Add columns at once in a batched way to increase performance (#11261)ericflock2018-11-062-87/+150
| | | | | | | | | | | | | | * provide possibility to add columns in a batched way This is the basis to increase the performance for further changes. * add the columns at once to the grid to increase performance * combined performance fixes * respect the column order * Fixed formatting
* IE9 test screenshots (#11275)sergey-vaadin2018-10-25490-0/+0
| | | | * IE9 screenshots
* IE8 screenshots (#11273)sergey-vaadin2018-10-24948-0/+0
|
* IE11 test screenshots 2 (#11270)sergey-vaadin2018-10-23454-0/+0
|
* IE11 test screenshots (#11258)sergey-vaadin2018-10-1814-0/+0
|
* Tests (wrong screenshots and JRE version, delay) (#11255)sergey-vaadin2018-10-174-3/+4
| | | | | | * wrong screenshots and JRE version * delay for submenu
* test fix (missing and wrong screenshots) (#11251)sergey-vaadin2018-10-174-1/+1
|
* Remove old release notes configurations (#11240)Anastasia Smirnova2018-10-113-318/+1
| | | | | | * Remove old release notes configurations * Remove FetchReleseNotes* files
* potential fixes for the tests (#11226)sergey-vaadin2018-10-102-1/+4
| | | | * potential fixes for the tests