]>
source.dussan.org Git - vaadin-framework.git/log
Pekka [Mon, 8 Apr 2019 06:42:31 +0000 (09:42 +0300)]
wip 2: revisited design
Still missing tests and example
Pekka [Tue, 2 Apr 2019 12:29:24 +0000 (15:29 +0300)]
wip: refactor proposed default converters
Pushing for comments. Missing examples, tests and a setup for the
default configurator for an app.
mrminy [Wed, 14 Nov 2018 13:23:29 +0000 (14:23 +0100)]
Compiled with 'mvn clean install'
mrminy [Wed, 14 Nov 2018 11:19:00 +0000 (12:19 +0100)]
Compiled with 'mvn clean install', moved IDefaultConverter to converter folder
Anastasia Smirnova [Wed, 14 Nov 2018 09:01:04 +0000 (11:01 +0200)]
Merge branch 'master' into master
Sun Zhe [Tue, 13 Nov 2018 11:48:28 +0000 (13:48 +0200)]
Correct the logic for validation used in DateField (#11307)
Fixes #11276
Refactor the code and correct the logic for validation
Rename an internal variable, as it contains more than one type of messages
Mikkel Nylend [Mon, 12 Nov 2018 14:22:49 +0000 (15:22 +0100)]
Update IDefaultConverter.java
Mikkel Nylend [Mon, 12 Nov 2018 13:58:16 +0000 (14:58 +0100)]
Update IDefaultConverter.java
Mikkel Nylend [Mon, 12 Nov 2018 13:15:09 +0000 (14:15 +0100)]
Update Binder.java
Mikkel Nylend [Mon, 12 Nov 2018 12:43:10 +0000 (13:43 +0100)]
Update IDefaultConverter.java
Mikkel Nylend [Mon, 12 Nov 2018 12:36:59 +0000 (13:36 +0100)]
Update IDefaultConverter.java
Mikkel Nylend [Mon, 12 Nov 2018 10:01:06 +0000 (11:01 +0100)]
Add files via upload
Added an optional converter interface that can be injected into the Vaadin 8 Binder. This makes it possible to setup default converters for your application.
Mikkel Nylend [Mon, 12 Nov 2018 09:44:19 +0000 (10:44 +0100)]
Update Binder.java
Added an optional default converter for automatically converting between classes when using {@link #bindInstanceFields(Object)}
Anastasia Smirnova [Fri, 9 Nov 2018 07:29:29 +0000 (09:29 +0200)]
Update DateTimeField failing screenshot (#11300)
tmattsso [Thu, 8 Nov 2018 15:13:03 +0000 (17:13 +0200)]
fixes #11297 by updating docs and pictures (#11298)
Ilia Motornyi [Thu, 8 Nov 2018 10:50:34 +0000 (12:50 +0200)]
Update VaadinIcons (#11281)
Leviand [Thu, 8 Nov 2018 06:39:08 +0000 (07:39 +0100)]
Removed typo in method , there was an extra ")" (#11295)
Sun Zhe [Tue, 6 Nov 2018 15:04:33 +0000 (17:04 +0200)]
Update framework to use jetty-server 9.4 (#11272)
Fix upload issue
Sun Zhe [Tue, 6 Nov 2018 12:52:28 +0000 (14:52 +0200)]
Code formatting (#11278)
Mehdi Javan [Tue, 6 Nov 2018 06:40:58 +0000 (08:40 +0200)]
Fixing NPE in Binder, ported from Flow (#11290)
Jeremy Stucki [Fri, 2 Nov 2018 10:51:23 +0000 (11:51 +0100)]
Make value changes in color picker user originated (#11252)
* Make value changes in color picker user originated
This is not a programmatically initiated event, so it should have the
'userOriginated' property set to 'true'.
- Added test to verify that indeed event is user originated after the change
Alejandro J. C De Baca [Thu, 1 Nov 2018 08:40:22 +0000 (04:40 -0400)]
Corrected method name TreeDataProvider#getTreeData (#11286)
* Corrected method name TreeDataProvider#getTreeData
The method name was incorrect in the documentation - was showing `getData()` but should be `getTreeData()`.
Sun Zhe [Fri, 26 Oct 2018 12:55:38 +0000 (15:55 +0300)]
Refactor the usage of KeyMapper in ActionManager. (#11265)
* Add Test for closing window with focused textfield
verify issue #10642
* Refactor the code about using keyMapper
Ilia Motornyi [Thu, 25 Oct 2018 08:44:14 +0000 (11:44 +0300)]
Fix karaf-4.2.1 test (#11264)
Sun Zhe [Wed, 24 Oct 2018 12:43:15 +0000 (15:43 +0300)]
Update jetty version to non-security alert (#11266)
* Update jetty version to non-security alert
* Remove out-dated comments.
Anastasia Smirnova [Wed, 24 Oct 2018 08:30:16 +0000 (11:30 +0300)]
Update time in ReadOnly state of DateTimeCalendar (#11269)
Fix https://github.com/vaadin/framework/issues/11268
```buildTime()``` function re-initializes ListBoxes for hours,minutes and seconds values. We need to set correct values in those ListBoxes, before assigning value to the labels displayed instead of those ListBoxes in ReadOnly state, as , otherwise, the selectedItemIndex returns 0.
Tatu Lund [Fri, 19 Oct 2018 09:43:08 +0000 (12:43 +0300)]
Improve setStyleGenerator JavaDocs (#11262)
Added note that style generator is not applied to the Editor
See also: https://github.com/vaadin/framework/issues/11169
Anastasia Smirnova [Thu, 18 Oct 2018 12:28:23 +0000 (15:28 +0300)]
Display the caption of the Empty selection in NativeSelect (#11191)
* Fixes #10937
- Previously if selected value is null, then index is set to -1; in current implementation if value is null and emptySelection is allowed then set the index to 0. (The position for the empty selection)
- Also, if changing the allowEmptySelection on the fly, ensure, that either index is to-reset to -1 by setting the selected value to null on the client-side (the value before was null) or preserve the value(value was different than empty).
* Change the test case
Since in this pr the behaviour of the NS is changed, therefore old test need to be adjusted.
Change: setting null as value will select empty selection. Before that nothing would be selected and value will be cleared.
Behaviour change in PR: Allow selecting null as value
Anastasia Smirnova [Wed, 17 Oct 2018 08:12:03 +0000 (11:12 +0300)]
Rebuild calendar pop-up on readOnly state change (#11249)
* Rebuild calendar pop-up on readOnly state change
Fixes https://github.com/vaadin/framework/issues/6565
Sun Zhe [Mon, 15 Oct 2018 05:42:48 +0000 (08:42 +0300)]
Format the code (#11244)
Sun Zhe [Fri, 12 Oct 2018 13:04:24 +0000 (16:04 +0300)]
Revert change to fix issue on removing Grid with components (#11224)
* Test case for removing Grid with components
* This reverts commit
b2745dc14f17b510df7321ab3f6285ed317da3b3 .
Add test case to address the issue with removing gird with components;
Current situation: the grid cannot be removed and client-side throw an error.
fixes: Revert the corresponding change, as it didn't address any issue which was fixed.
Anna Koskinen [Wed, 10 Oct 2018 10:26:13 +0000 (13:26 +0300)]
Updates to scrolled TabSheet resize logic and Valo right-alignment. (#11133)
- When a TabSheet is scrolled to an end and then resized bigger, more
tabs should appear to the left.
- When a TabSheet is right-aligned in Valo and scrolled to the end, last
tab shouldn't be partially hidden behind the scroller buttons.
- Shouldn't allow attempts to scroll into directions where there is
nothing left to scroll to, even if the current tab isn't fully visible.
Fixes #807
Sun Zhe [Tue, 9 Oct 2018 13:27:16 +0000 (16:27 +0300)]
Correct typo in tutorial (#11230)
Sun Zhe [Tue, 9 Oct 2018 12:50:45 +0000 (15:50 +0300)]
Run formatter to the code (#11227)
Sun Zhe [Tue, 9 Oct 2018 11:05:31 +0000 (14:05 +0300)]
Update selenium version (#11232)
* Testsing: Update selenium version
Anna Koskinen [Mon, 8 Oct 2018 12:08:05 +0000 (15:08 +0300)]
Fixes to displaying Grid in a detail row. (#11147)
- Multiple headers shouldn't stack behind each other.
- Body rows shouldn't get stuck to default row height.
- Compatibility version's hidable row selector shouldn't try to
calculate row heights based on rows that haven't been added to DOM yet.
Fixes #7674
Sun Zhe [Mon, 8 Oct 2018 10:27:19 +0000 (13:27 +0300)]
Update vaadin.plugin.version (#11220)
* Use project.version for vaadin plugin
Leif Åstrand [Tue, 2 Oct 2018 11:21:41 +0000 (14:21 +0300)]
Suppress unavoidable UIDetachedException (#11146)
* Suppress unavoidable UIDetachedException
Fixes #11144
0xflotus [Tue, 2 Oct 2018 09:43:38 +0000 (11:43 +0200)]
fixed UI Test section
Kari Söderholm [Mon, 1 Oct 2018 12:14:19 +0000 (15:14 +0300)]
Fix link in "Vaadin Spring Tips" article (#11214)
Link to `3.0` branch of `vaadin/spring` which is the latest version for Vaadin 8 and latest version branch to contain this mentioned file with this path/name.
Tatu Lund [Mon, 1 Oct 2018 11:25:27 +0000 (14:25 +0300)]
Updated JavaDoc of getColumn(..) method (#11179)
* Updated JavaDoc of getColumn(..) method
Fixes https://github.com/vaadin/framework/issues/9920
Anna Koskinen [Mon, 1 Oct 2018 10:34:22 +0000 (13:34 +0300)]
Replaced Grid's internal size calculation fix with an indexing fix. (#11154)
- More lightweight, and fixes things for any custom implementations of
Escalator as well.
Fixes #11044
Michael Benz [Mon, 1 Oct 2018 08:02:18 +0000 (10:02 +0200)]
Updated Upload.java (#11203)
Javadoc correction of typos in getAcceptMimeTypes() and setAcceptMimeTypes(String acceptMimeTypes)
Sun Zhe [Mon, 1 Oct 2018 07:28:32 +0000 (10:28 +0300)]
Introduce delay for ChameleonTheme test (#11210)
Sun Zhe [Thu, 27 Sep 2018 06:09:37 +0000 (09:09 +0300)]
Update master to 8.7-SNAPSHOT (#11208)
Teemu Suo-Anttila [Wed, 26 Sep 2018 12:16:40 +0000 (15:16 +0300)]
Update ComboBox internal state on new item added (#11094)
Mehdi Javan [Wed, 26 Sep 2018 11:09:35 +0000 (14:09 +0300)]
Fixing typo (#11207)
Sun Zhe [Wed, 26 Sep 2018 10:03:17 +0000 (13:03 +0300)]
Update release note for framework 8.6.0.beta1 (#11205)
* Update release note for framework 8.6.0.beta1
Mehdi Javan [Fri, 21 Sep 2018 12:55:12 +0000 (15:55 +0300)]
Updating since tags (#11200)
S.W [Fri, 21 Sep 2018 08:01:52 +0000 (10:01 +0200)]
OSGi resource registration via SCR (#11166)
* Changed the way resources, themes, and widgetsets are registered to the HttpService by only using the VaadinResourceTrackerComponent
Sun Zhe [Fri, 21 Sep 2018 07:04:30 +0000 (10:04 +0300)]
update uitest screenshot reference (#11197)
* update uitest screenshot reference
* one more screenshot
* screenshot for table drop indicator
Mehdi Javan [Wed, 19 Sep 2018 06:20:04 +0000 (09:20 +0300)]
Fix/focus inside window chrome (#11142)
Fixes #11087
Mehdi Javan [Mon, 17 Sep 2018 13:17:28 +0000 (16:17 +0300)]
Fixing RadioButtonGroup exception in Window (#11181)
* discardStaleCacheEntries is moved to a proper place before updating indexToRowMap and keyToIndexMap maps. In its previous place, it cleared the data that was just put in the maps.
Fixes #11143
* Adding test
* Removing extra annotations
* Updating chrome version to 69 in tests (#11182)
* Updating Chrome version to 69
* Updating screenshots taken in Chrome 69
* Fixing screenshots
* Fixing screenshots
* Adding some wait commands to tests
* Fixing screenshots
* Revert: Fixing screenshots
* More screenshots
* - Adding wait commands to make sure the transitions end before screenshot
- Fixing a screenshot
* Correcting a mistake of using wait instead of sleep
* Fixing more screenshots
* Increasing the height of ContextMenu (Because of limitation of new Chrome 69 in terms of minimum window height, ContextMenu size can't be tested with a small height.)
Mehdi Javan [Mon, 17 Sep 2018 08:23:23 +0000 (11:23 +0300)]
Updating chrome version to 69 in tests (#11182)
* Updating Chrome version to 69
* Updating screenshots taken in Chrome 69
* Fixing screenshots
* Fixing screenshots
* Adding some wait commands to tests
* Fixing screenshots
* Revert: Fixing screenshots
* More screenshots
* - Adding wait commands to make sure the transitions end before screenshot
- Fixing a screenshot
* Correcting a mistake of using wait instead of sleep
* Fixing more screenshots
* Increasing the height of ContextMenu (Because of limitation of new Chrome 69 in terms of minimum window height, ContextMenu size can't be tested with a small height.)
Olli Tietäväinen [Fri, 7 Sep 2018 11:00:15 +0000 (14:00 +0300)]
Since tags in 8.5.2 (#11174)
Teemu Suo-Anttila [Fri, 7 Sep 2018 09:10:16 +0000 (12:10 +0300)]
Fix handler creation to happen on init (#11172)
Fix handler creation to happen on init
Anastasia Smirnova [Fri, 7 Sep 2018 08:39:48 +0000 (11:39 +0300)]
Ensure that HeaderRow is not null in Grid (#11165)
Ensure that HeaderRow is not null in Grid
Fixes #10485
Marco Collovati [Fri, 7 Sep 2018 08:06:03 +0000 (10:06 +0200)]
Fix handling of hidden Components in Grid(#10367)
Ilia Motornyi [Fri, 7 Sep 2018 07:19:00 +0000 (10:19 +0300)]
Remove objects from ActiveDataHandler that are no longer available in used DataProvider (#11167)
Remove objects from DataCommunicator.ActiveDataHandler that are no longer available in used DataProvider.
Anastasia Smirnova [Thu, 6 Sep 2018 13:25:07 +0000 (16:25 +0300)]
Force re-updating the resolutions of DateField (#11159)
Fixes #11099
Petter Holmström [Thu, 6 Sep 2018 13:19:19 +0000 (16:19 +0300)]
Re-enable the Atmosphere heartbeat interceptor (#9877)
Teemu Suo-Anttila [Tue, 4 Sep 2018 12:45:08 +0000 (15:45 +0300)]
Add API to access features of SelectionModels (#10939)
Ilia Motornyi [Tue, 4 Sep 2018 10:41:44 +0000 (13:41 +0300)]
Upgrade to new Atmosphere (#11122), replace SSH proxy with java-based trivial one, fix tests
Mehdi Javan [Mon, 3 Sep 2018 17:45:07 +0000 (20:45 +0300)]
Upgrading Vaadin Spring Add-on to 3.1.1 (#11158)
Gilberto Torrezan [Wed, 13 Jun 2018 07:08:04 +0000 (10:08 +0300)]
Add fallback resolvers for CurrentInstance (#10974)
This allow applications to inject custom default instances when the
current instances cannot be found by regular means.
For example, when VaadinServlet.getCurrent() would return null, a
fallback resolver could be invoked to properly create the servlet and
return it.
Ilia Motornyi [Fri, 31 Aug 2018 14:29:23 +0000 (17:29 +0300)]
Update tests for new Chrome (#11150)
haiwan [Thu, 23 Aug 2018 08:14:28 +0000 (11:14 +0300)]
Fix broken link to mobile d&d polyfill (#11127)
haiwan [Wed, 22 Aug 2018 09:29:52 +0000 (12:29 +0300)]
Fix Grid stylename in documentation (#11130)
Matti Tahvonen [Tue, 21 Aug 2018 12:05:51 +0000 (15:05 +0300)]
Update stale.yml (#11123)
Anna Koskinen [Tue, 21 Aug 2018 05:51:56 +0000 (08:51 +0300)]
Lift frozen columns up to allow some z-index changes beneath them. (#11117)
Fixes #9787
Ilia Motornyi [Mon, 13 Aug 2018 06:40:41 +0000 (09:40 +0300)]
Set correct GWT .dtd definition (#11110)
Mehdi Javan [Thu, 9 Aug 2018 06:07:49 +0000 (09:07 +0300)]
Improving javadoc of Binder.removeBinding (#11107)
Fixes #11091
Ilia Motornyi [Tue, 7 Aug 2018 12:49:49 +0000 (15:49 +0300)]
Document how to handle cancelled file downloads. (#11079)
Mehdi Javan [Mon, 30 Jul 2018 15:53:24 +0000 (18:53 +0300)]
Fix Escalator to properly reset height by rows (#11090)
Teemu Suo-Anttila [Mon, 30 Jul 2018 11:24:45 +0000 (14:24 +0300)]
Add mention of ContextMenu changes to Release Notes (#11085)
Teemu Suo-Anttila [Mon, 30 Jul 2018 09:48:32 +0000 (12:48 +0300)]
Fix Grid MultiSelectionModel to always use getId (#11086)
Fixes #11083
Mehdi Javan [Fri, 20 Jul 2018 07:57:03 +0000 (10:57 +0300)]
Fix Grid Editor closing and disabling at same time (#11078)
Fixes #10688
Ilia Motornyi [Thu, 19 Jul 2018 12:32:05 +0000 (15:32 +0300)]
Fix removal tabsheets if last one is selected (#11070)
Fixes #10925
Ilia Motornyi [Thu, 19 Jul 2018 11:46:25 +0000 (14:46 +0300)]
Fixed typo (#11072)
Teemu Suo-Anttila [Thu, 19 Jul 2018 10:50:33 +0000 (13:50 +0300)]
Fix DataCommunicator not sending data on filter updates (#11068)
Teemu Suo-Anttila [Thu, 19 Jul 2018 09:42:26 +0000 (12:42 +0300)]
Update version numbers in Release Notes (#11062)
This patch also introduces missing tests for newer Wildfly versions.
Addresses #11050
Teemu Suo-Anttila [Wed, 18 Jul 2018 10:10:31 +0000 (13:10 +0300)]
Fix Combobox adding an item with empty string (#11067)
Ilia Motornyi [Wed, 18 Jul 2018 06:57:20 +0000 (09:57 +0300)]
Advance spring addon version (#11063)
Teemu Suo-Anttila [Wed, 18 Jul 2018 06:56:42 +0000 (09:56 +0300)]
Upgrade ContextMenu version in BOM (#11065)
Guille [Tue, 17 Jul 2018 10:56:10 +0000 (13:56 +0300)]
Update TestBench version to 5.2.0 (#11058)
Teemu Suo-Anttila [Tue, 17 Jul 2018 09:13:08 +0000 (12:13 +0300)]
Fix Grid resetting row height on resize (#11056)
Ilia Motornyi [Mon, 16 Jul 2018 09:58:49 +0000 (12:58 +0300)]
Ported change from 7.7 to compatibility - ComboBox popup position while scrolling (#11055)
Fixes #5043
Teemu Suo-Anttila [Fri, 13 Jul 2018 12:08:47 +0000 (15:08 +0300)]
Fix Grid internal size calculations on vertical resize (#11046)
Teemu Suo-Anttila [Wed, 11 Jul 2018 19:06:59 +0000 (22:06 +0300)]
Fix canceling Grid Editor during EditorOpenEvent (#11038)
Fixes #11002
Teemu Suo-Anttila [Wed, 11 Jul 2018 19:00:58 +0000 (22:00 +0300)]
Fix CDI and IE11 tests (#11042)
* Set Wildfly version, only resize viewport for Firefox
Ilia Motornyi [Wed, 11 Jul 2018 18:59:32 +0000 (21:59 +0300)]
Unlock and refactor some API to create a new ContextMenu (#11041)
Ilia Motornyi [Wed, 11 Jul 2018 10:24:21 +0000 (13:24 +0300)]
Add xsrf token header if cookie is present (#11034)
Fixes #9471
Ilia Motornyi [Wed, 11 Jul 2018 06:25:51 +0000 (09:25 +0300)]
Add reminder of serialization to Grid documentation (#11037)
Ilia Motornyi [Tue, 10 Jul 2018 09:59:02 +0000 (12:59 +0300)]
Fix formatting, improve documentation on autoformat (#11033)
Teemu Suo-Anttila [Tue, 10 Jul 2018 08:14:05 +0000 (11:14 +0300)]
Fix initially selected CheckBox rendering in Safari (#11024)
Mehdi Javan [Tue, 10 Jul 2018 08:09:53 +0000 (11:09 +0300)]
Improve ComboBox keyboard behavior when an item is selected (#11031)
Ignoring filtering options when right arrow, left arrow, home or end key is pressed.
Fixes #11016
Teemu Suo-Anttila [Tue, 10 Jul 2018 07:20:37 +0000 (10:20 +0300)]
Enable selection checkboxes with unbuffered editor (#11032)
Fixes #11028
Ilia Motornyi [Wed, 4 Jul 2018 06:55:41 +0000 (09:55 +0300)]
Fix formatting (#11023)
Teemu Suo-Anttila [Tue, 3 Jul 2018 18:32:38 +0000 (21:32 +0300)]
Fix Firefox coordinates, add missing screenshots (#11022)
Teemu Suo-Anttila [Tue, 3 Jul 2018 11:16:51 +0000 (14:16 +0300)]
Fix wrapping div getting focused in CheckBoxGroup and RadioButtonGroup (#11021)
Fixes #9731