summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* 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)
* Fix initially selected CheckBox rendering in Safari in v7 compatibility ↵Koen De Cock2019-02-141-0/+19
| | | | | package (#11024) (#11456) This fix was already applied to com.vaadin.client.ui.VCheckBox but the committer forget to apply the same fix to the com.vaadin.v7.client.ui.VCheckBox. Some people are still temporarely using the checkbox from the compatibility package.
* Update CONTRIBUTING.md to guide people to create fork (#11457)Matti Tahvonen2019-02-141-2/+2
|
* Fixing JavaDoc of Column#getWidth() and Column#setWidth() (#11452)Tatu Lund2019-02-121-1/+6
| | | | Fixes #11451
* Fix an NPE caused by the previous fix to Grid's frozen columns (#11444)mlindfors2019-02-043-2/+92
| | | | | | | | | | * Fix an NPE caused by the previous fix to Grid's frozen columns (#10653) If the user managed to get two frozen column count changes into a single server round-trip before the component had been attached, the previous fix #11346 lead to a null pointer exception since there was no diff state available. This fix adds a null check before removing the frozen column count value from the diff state so that this will not happen. Closes #10653
* Add git config hint to README to allow long paths in Windows (#11445)Tobse2019-02-041-1/+1
|
* * Update since tags and fix code formatting (#11441)Mehdi Javan2019-01-302-4/+6
|
* Added example of how to load bundles with Vaadin8 + compatibility libraries ↵Tatu Lund2019-01-291-0/+17
| | | | (#11439)
* added [source, java] for ComponentRenderer samples (#11428)Olli Tietäväinen2019-01-221-0/+2
|
* Adds missing Status enum to dataprovider example (#11425)tmattsso2019-01-181-0/+19
|
* Update Tooltip Snapshot (#11414)Sun Zhe2019-01-171-0/+0
|
* Fix #11369 (#11403)Maciej Przepióra2019-01-174-0/+126
| | | Clear contents of iframe clone that is in a Window so that when it's reattached to DOM we don't get 404
* Fix formatting (#11423)Maciej Przepióra2019-01-171-1/+1
|
* removes mention of Java EE in spring doc (#11422)tmattsso2019-01-171-6/+0
|
* adds note about maven catalogue file to tutorial (#11421)tmattsso2019-01-161-0/+3
|
* Fix @PushStateNavigation with @PreserveOnRefresh (#11417)Tatu Lund2019-01-111-0/+7
| | | | | Navigation needs to be done also in doRefresh(..) in similar fashion as in doInit(..) Fixes https://github.com/vaadin/framework/issues/11416
* Fix wrong year assert in DateField test (#11404)Sun Zhe2019-01-021-7/+9
|
* Add Javadoc to the ScrollTo methods in TreeGrid (#11399)Sun Zhe2018-12-281-0/+21
| | | | * Add Javadoc to the ScrollTo methods in TreeGrid
* Clear up enhancements contents from master (#11396)Sun Zhe2018-12-281-12/+7
| | | | | | | | * Clear up enhancements contents from master * Upgrade the version mentioned in the release note * Close the <span> block
* Update snapshot to 8.8-snapshot (#11397)Sun Zhe2018-12-2865-65/+65
|
* Grid column npe behavior (#11390)Olli Tietäväinen2018-12-283-3/+253
| | | | | | | | * add possibility to configure nested null behavior to Grid.Column * added addColumn method that allows configuring the nested null handling behavior of the column * added uitest for nested null value handling, implements #11137
* Release-note updates (#11389)Sun Zhe2018-12-271-3/+3
| | | | | | | | * Release-note updates Change the word for describing icon swapping * Update vaadin slogan in the release-note template
* increase number of styles for indented TreeGrid rows, fixes #11358 (#11392)Olli Tietäväinen2018-12-212-1/+5
|
* Update release note and since tag (#11386)Sun Zhe2018-12-2012-94/+133
| | | | * Some formatting changes
* Checkbox allow customizing of input and label classNames. (#11372)Knoobie2018-12-189-4/+636
| | | | | | | | | * add client side integration for custom styles for checkbox.label and checkbox.input * add server side integration for checkbox element styling * add server side tests * add client side test
* Update portal-osgi.asciidoc (#11384)Matti Tahvonen2018-12-181-9/+9
| | | Updated versions to latest ones as people often just copy past things. Added comment to urge people to use the versions they need. Removed version from archetype to use the latest by default.
* Improve VMenuBar click handling logic (#11356)Anastasia Smirnova2018-12-176-93/+218
| | | | | | | | | | | | | | | * Improve VMenuBar click handling logic 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 * Remove accidentally committed comment * Don't update the state on the getDelayMs call
* Using correct tags in the portal ui docsDiegoSanzVi2018-12-171-1/+2
| | | There are not [source, java] tags.
* Add missing [source, java] to the java code blocks in documentation (#11381)Anastasia Smirnova2018-12-1711-31/+31
| | | | | | | * Update clientsideapp-entrypoint.asciidoc Adding missing ```[source, java]```
* Error advanced-osgi formating (#11382)DiegoSanzVi2018-12-171-0/+5
| | | Some snippets codes do not render properly.
* Update README-TESTS (#11376)Sun Zhe2018-12-171-21/+25
| | | | | | | | * Update README-TESTS Add formatting for easy-reading; Add missing configuration for running IE11 locally.
* Prevent IndexOutOfBoundException in VMenuBar.CustomMenuItem (#11285)Jonni Madekivi2018-12-173-0/+51
| | | | | | | | * Fixes #10814 * Add missing tests Fixes #11374
* Update Screenshot due to Icon update (#11373)Sun Zhe2018-12-145-0/+0
| | | | Update screenshots due to update of search-minus and search-plus icons values
* Move onClick logic to the Connector (#11367)Anastasia Smirnova2018-12-145-24/+80
| | | | | | | | | | * Move onClick logic to the Connector Move onClick event handling from 'VNativeButton' to NativeButtonConnector. Now works as for regular button. Also, adding propagation of the `enabled` value to the state on disableOnClick being true Fixes https://github.com/vaadin/framework/issues/11188
* Apply missing v-readonly style to CheckBoxGroup, when component is readOnly ↵Anastasia Smirnova2018-12-133-1/+90
| | | | | | | | | | | | | | | | (#11370) Setting read-only state to CheckBoxGroup should disable adding clicking effect. Missing v-readonly style is added to every CheckBox in the component, if it's set to read-only. Fixes: https://github.com/vaadin/framework/issues/11113 * Add file missed from initial commit * Verifying that option is enabled Some of the options might be disabled on there own. Verify that option is not disabled, before removing disabled styles. * Add missing test file