aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Updated instructions on how to run TB3+ tests with Intellij; added Qu… ↵Martin Vysny2019-05-172-24/+79
| | | | | | | | (#11580) * Updated instructions on how to run TB3+ tests with Intellij; added QuickStart to quickly set up testing environment * Readme rewording
* Fix duplicate grid column visibility change event (#11565)cuong-phan2019-05-163-1/+105
| | | | | | | | * Fix duplicate grid column visibility change event Toggle a column visibility through UI will fire 2 event. There should be only 1. * Add Test
* Grid editor: TAB now skips non-editable columns (#11573)Martin Vysny2019-05-163-8/+302
| | | | | | | | | | | * Grid editor: TAB now skips non-editable columns Pressing TAB would shift the focus to non-editable cells when the Grid was in edit mode. This patch makes DefaultEditorEventHandler to skip such columns. Closes #10970 * Add tests
* Fix the broken links in the documentationjuhopiirainen2019-05-1514-25/+24
|
* Reduce Grid's sort complexity. (#11566)Anna Koskinen2019-05-156-16/+157
| | | | | | - limit DataCommunicator workaround from #11320 to ComboBox only - don't reset DataCommunicator before modifying all sorting data Fixes #11532
* Add handling for completely empty Grid's column width calculations. (#11569)Anna Koskinen2019-05-142-1/+67
| | | Fixes #11557
* Update for Liferay 7.2 compatibility (#11564)Chris Morris2019-05-131-1/+1
| | | Change so that liferay 7.2 can run Vaadin portlets
* code format (#11555)Sun Zhe2019-05-0212-31/+37
|
* Changed the handleSessionExpired logic to return a 404 instead of a 410 and ↵edler-san2019-05-021-1/+8
| | | | | | | added the no-cache parameter to the reply. (#11556) * Changed the handleSessionExpired logic to return a 404 instead of a 410. Also added the no-cache parameter to the reply. See https://github.com/vaadin/framework/issues/4417 for discussion.
* Code format (#11548)Sun Zhe2019-04-2912-38/+40
| | | | | | * Code format * Merge branch 'master' into code-format
* Update jetty.version to solve vulnerability alert (#11546)Sun Zhe2019-04-291-1/+1
|
* Replace the screenshot usage in framework test (#11547)Sun Zhe2019-04-2930-43/+65
| | | | | | | | | - Replace the GridDisabledTest screenshot usage - Replace the screenshot tests in BasicCrudGridEditorRowTest - Replace the screenshot tests in ComboboxVaadinIcons - Replace the screenshot tests in ValoThemeUITest::accordions - Added screenshotcomparetolerance to some screenshot test to make tests stable
* Opening methods for Spring add-on to be used in the fix (#11551)Tatu Lund2019-04-251-0/+23
| | | Spring add-on needs to use these added methods in order to fix #10922
* Update browser version in the test (#11550)Sun Zhe2019-04-251-1/+1
|
* Reset Combobox internal state (#11412)Sun Zhe2019-04-245-19/+309
| | | | | | | | | | issue in #11343 and #11385 is not reproducible on top this patch Three different bugs are involved in this fix: we bring the old fix(#11094) back and fixed the other related issues: 1) allow adding the same new item after dataProvider got reset, This is cause by the client side parameter `LastNewItemString`, it saves the value added before resetting. 2) clear the pending newItem eagerly, so that the same value will not be added again.
* Update to 8.9 (#11535)Sun Zhe2019-04-1866-69/+69
| | | | | | * Update to 8.9-SNAPSHOT * update in bom module
* Finish the since tag (#11540) (#11543)Sun Zhe2019-04-183-6/+6
|
* Create StringToUuidConverter.java (#11387)Basil Bourque2019-04-101-0/+99
| | | | | | | | | | | * Create StringToUuidConverter.java Implements the `Converter` interface, to support converting back-and-forth between `String` and `UUID` (a type built into Java 5 and later). See Issue # 11,051. https://github.com/vaadin/framework/issues/11051 * Formatting cleanup, remove sinces
* Clicking on slider makes handler move (#11519)Anastasia Smirnova2019-04-106-8/+147
| | | | | | | | | | | | | | * Clicking on slider makes handler move Fixes #1496 * Introducing control over clicking behaviour - User will have to enable process of the click event on handle calling `slider.setEnableClickHandler(true);` - Clean-up the handler logic in VSlider.java - Renaming the property to `updateValueOnClick` - Added JavaDocs - Fixing tests
* Fixing autocompletion issue with ComboBox on newer Chrome versions (#11524)Tatu Lund2019-04-101-1/+6
| | | | | | | Newer Chrome versions do not work with random number hack to prevent auto completion, but it finally supports autocomplete=off. Adapted from https://github.com/vaadin/framework/pull/11472 Fixes #11437
* Fixing autocompletion issue with ComboBox on newer Chrome versions (#11472)Tatu Lund2019-04-101-1/+6
| | | | | | | | | | | | | | | | | | | | | | * Fixing autocompletion issue with ComboBox on newer Chrome versions Newer Chrome versions do not work with random number hack to prevent auto completion, but it finally supports autocomplete=off. * Merge branch 'master' into fix11437 * Merge branch 'master' into fix11437 * Merge branch 'master' into fix11437 * Merge branch 'master' into fix11437 * Merge branch 'master' into fix11437 * Merge branch 'master' into fix11437 * Merge branch 'master' into fix11437 * Merge branch 'master' into fix11437
* Added note about Java 8 vendors (#11530)Olli Tietäväinen2019-04-101-1/+3
| | | | | | * Added note about Java 8 vendors * Update release-notes.html
* Add delay to the unstable test (#11538)Sun Zhe2019-04-092-1/+2
| | | * Add delay to the unstable test
* Use Enter and Space keys to fire Window header buttons (#11517) (#11534)KatriHaapalinna2019-04-084-5/+474
| | | | | | | | | | * Fixes 11517. Use ENTER and SPACE keys as shortcuts for header buttons * Merge branch 'master' into fix-11517 * Increase sleep time for test failing in validation * Merge branch 'master' into fix-11517
* Update screenshots after chrome updates (#11536)Sun Zhe2019-04-08108-1/+1
| | | | | | * Update screenshots after chrome updates * Update screenshots after chrome updates
* Reset selection on DataProvider change in RadioButtonGroup (#11526)Anastasia Smirnova2019-04-043-0/+77
| | | | | | | | | | | | * Reset selection on DataProvider change in RadioButtonGroup Fixes #11454 Other components needing the same fix are ListSelect,NativeSelect,Combobox (The ones implementing HasDataProvider and extending AbstractSingleSelect. Grid is not affected as it extends AbstractListing and hadles selection differently) * Added test case Verify that ValueChangeListener is actually fired after value is reset setting new DataProvider
* Read-only combobox should not handle PASTE event (#11529)Anastasia Smirnova2019-04-043-2/+49
| | | Fixes 11528
* setCaption of Panel did not honor setCaptionAsHtml (#11523)Tatu Lund2019-04-026-4/+58
| | | | Verify that correct mode(HTML/TEXT) of caption is set for the Panel Fixes #11521
* Added missing numpad key codes (#11490)Tatu Lund2019-04-021-0/+42
| | | Fixes #11489
* Init logging in VaadinServlet instead of an UI (#11525)Martin Vysny2019-04-011-5/+4
| | | If you use multiple UIs, the use of SLF4J would depend on the UI initialization order which could be pretty random. If you have multiple servlets, it's even better to init SLF4J in ServletContextListener.
* Support Firefox 65+ key down event behavior (#11503)Yuriy Artamonov2019-03-296-20/+40
| | | Fixes #11502
* Documents the possibility to use vaadin:// and theme:// in JavaScript… ↵Martin Vysny2019-03-282-11/+20
| | | | | | | | (#11512) Documents the possibility to use vaadin:// and theme:// in JavaScript and StyleSheet annotations. Fixes #8675
* Mention DataProvider training videos in components-grid.asciidoc (#11494)alexandruchiuariu2019-03-281-0/+2
|
* Fix NPE in v7 compatibility Grid during datasource rebind (#11473)Tobse2019-03-273-3/+70
| | | | | Add DataChangeHandler removal in v7 Grid just as in v8 Grid. Adding tests to the fix to verify, that NPE is not thrown.
* Add mention about video trainings to the tutorial page (#11493)alexandruchiuariu2019-03-271-0/+2
|
* Making V8 ReadOnly TextField select row in table upon clicking (#11480)Anastasia Smirnova2019-03-273-1/+87
| | | | | | Add check for the V8 TextField used in Table in compatibility mode. This makes clicking cell with the TextField select the row, preserving behaviour from V7. Through, as it's noted also before, this is an improved workaround, not a proper solution to address the issue. Fixes #11474
* Do not recommend crappy old containers in tutorial (#11514)Pekka Hyvönen2019-03-271-5/+1
| | | Removed link to and recommendation for SQLContainer
* Update datamodel-forms.asciidoc (#11496)alexandruchiuariu2019-03-221-0/+2
|
* Update checkstyle dependency to fix security vulnerability (#11497)Sun Zhe2019-03-211-3/+1
|
* Make improve of caching for hierarchical data optional (#11501)Klaudeta2019-03-214-24/+242
| | | | | Make improve of caching for hierarchical data optional Fixes #11477
* Add note about dependency injection in BrowserWindowOpener JavaDocs (#11495)Tatu Lund2019-03-141-1/+11
| | | If BrowserWindowOpener is used with constructor using Class<? extends UI> as parameter, it will have UI provider with generated url. This will not match UI beans in contextual storage and hence newly created UI will not be managed bean. Due this, injection to new UI instance will not happen. If you are using CDI , BrowserWindowOpener(String) constructor needs to be used.
* Remove wrong version and add missing since (#11476)Sun Zhe2019-03-111-2/+4
|
* Fix code example (#11487)A.Mahdy AbdelAziz2019-03-111-3/+3
| | | Fix example of using grid.setStyleGenerator in one line
* Adding package name to the @value in JavaDoc (#11453)Anastasia Smirnova2019-03-081-1/+1
|
* Fix ComboBoxElement clear method (#11483)Sun Zhe2019-03-063-14/+11
| | | | | | Explicitly reset the value in case if it was cleared. Ignore the case for selecting a suggestion. Fixes vaadin/testbench#1122
* Remove redundant check for for Firefox (#11471)Anastasia Smirnova2019-03-063-10/+62
| | | | | | | | | | | * Add Test file * Remove redundant check for for Firefox It seems that in older versions of Firefox (at least, older than 45) the KeyPress event should be used instead of KeyDownHandler. At some point (works already on 58 version, the current one is 65) the issue was resolved and starting from Firefox 65 this hook prevents from navigating in the pop-up via keyboard. Simply removing additional logic makes navigating in both DateField and InlineDateField possible Fixes #11465
* Ensure pop-up is not opened, when tabbing out fast from Combobox (#11436)Anastasia Smirnova2019-02-252-4/+52
| | | | | | | | | | | Checking that no prior Combobox behavior is broken * Cleaning-up the code Adding UI test * Adding TestBench test
* Fixing NPE when ItemCaptionGenerator returns null (#11435)Tatu Lund2019-02-221-1/+10
| | | | | | | | * Fixing NPE when ItemCaptionGenerator returns null Adding similar logic in setDataProvider(...) as used elsewhere in ComboBox.java (e.g. generateData(..) see line 314) fixes issue #11434
* Custom serializers accessors (#10658)Olli Tietäväinen2019-02-223-6/+174
| | | | | | | | | | | | | | | | | | | | | | | | * add accessor methods for CUSTOM_SERIALIZERS in JsonCodec * javadoc * removed removeCustomSerializer method, renamed putCustomSerializer to addCustomSerializer, added sanity checks and JavaDocs * refactored addCustomJsonSerializer to set, added test UI * move enums to be parsed after custom serializers * move adding custom serializer to static block * throw an exception if multiple serializers are registered for class * updated javadocs * changed CustomJSONSerializerTest to a SingleBrowserTest * moved CustomJSONSerializerTest to server/ and it's now not a browser test * removed CustomJSONSerializerTest
* Provide extensive error information on GridLayout.OutOfBoundsException and ↵Martin Vysny2019-02-212-2/+34
| | | | | | IllegalArgumentException (#11461)