]> source.dussan.org Git - vaadin-framework.git/log
vaadin-framework.git
5 years agoAdd javadoc for validate() call in Binder (#11318)
Sun Zhe [Thu, 15 Nov 2018 11:20:23 +0000 (13:20 +0200)]
Add javadoc for validate() call in Binder (#11318)

* Add javadoc for validate() call in Binder

5 years agoRefactoring DataCommunicator code (#11304)
Anastasia Smirnova [Thu, 15 Nov 2018 06:56:40 +0000 (08:56 +0200)]
Refactoring DataCommunicator code (#11304)

This refactoring addresses two issues cased by dropping updatedData before it was processed. Issues arise , when visibility has change.

Fixes #11274 and similar issue within RadioButton

There is no reliable way to test automatically NativeSelects in Grid, but adding UI test, at least

5 years agoUpdate context-menu version (#11313)
Sun Zhe [Wed, 14 Nov 2018 09:25:21 +0000 (11:25 +0200)]
Update context-menu version (#11313)

5 years agoCorrect the logic for validation used in DateField (#11307)
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

5 years agoUpdate DateTimeField failing screenshot (#11300)
Anastasia Smirnova [Fri, 9 Nov 2018 07:29:29 +0000 (09:29 +0200)]
Update DateTimeField failing screenshot (#11300)

5 years agofixes #11297 by updating docs and pictures (#11298)
tmattsso [Thu, 8 Nov 2018 15:13:03 +0000 (17:13 +0200)]
fixes #11297 by updating docs and pictures (#11298)

5 years agoUpdate VaadinIcons (#11281)
Ilia Motornyi [Thu, 8 Nov 2018 10:50:34 +0000 (12:50 +0200)]
Update VaadinIcons (#11281)

5 years agoRemoved typo in method , there was an extra ")" (#11295)
Leviand [Thu, 8 Nov 2018 06:39:08 +0000 (07:39 +0100)]
Removed typo in method , there was an extra ")" (#11295)

5 years agoUpdate framework to use jetty-server 9.4 (#11272)
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

5 years agoCode formatting (#11278)
Sun Zhe [Tue, 6 Nov 2018 12:52:28 +0000 (14:52 +0200)]
Code formatting (#11278)

5 years agoFixing NPE in Binder, ported from Flow (#11290)
Mehdi Javan [Tue, 6 Nov 2018 06:40:58 +0000 (08:40 +0200)]
Fixing NPE in Binder, ported from Flow (#11290)

5 years agoMake value changes in color picker user originated (#11252)
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

5 years agoCorrected method name TreeDataProvider#getTreeData (#11286)
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()`.

5 years agoRefactor the usage of KeyMapper in ActionManager. (#11265)
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

5 years agoFix karaf-4.2.1 test (#11264)
Ilia Motornyi [Thu, 25 Oct 2018 08:44:14 +0000 (11:44 +0300)]
Fix karaf-4.2.1 test (#11264)

5 years agoUpdate jetty version to non-security alert (#11266)
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.

5 years agoUpdate time in ReadOnly state of DateTimeCalendar (#11269)
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.

5 years agoImprove setStyleGenerator JavaDocs (#11262)
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

6 years agoDisplay the caption of the Empty selection in NativeSelect (#11191)
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

6 years agoRebuild calendar pop-up on readOnly state change (#11249)
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

6 years agoFormat the code (#11244)
Sun Zhe [Mon, 15 Oct 2018 05:42:48 +0000 (08:42 +0300)]
Format the code (#11244)

6 years agoRevert change to fix issue on removing Grid with components (#11224)
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.

6 years agoUpdates to scrolled TabSheet resize logic and Valo right-alignment. (#11133)
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

6 years agoCorrect typo in tutorial (#11230)
Sun Zhe [Tue, 9 Oct 2018 13:27:16 +0000 (16:27 +0300)]
Correct typo in tutorial (#11230)

6 years agoRun formatter to the code (#11227)
Sun Zhe [Tue, 9 Oct 2018 12:50:45 +0000 (15:50 +0300)]
Run formatter to the code (#11227)

6 years agoUpdate selenium version (#11232)
Sun Zhe [Tue, 9 Oct 2018 11:05:31 +0000 (14:05 +0300)]
Update selenium version (#11232)

* Testsing: Update selenium version

6 years agoFixes to displaying Grid in a detail row. (#11147)
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

6 years agoUpdate vaadin.plugin.version (#11220)
Sun Zhe [Mon, 8 Oct 2018 10:27:19 +0000 (13:27 +0300)]
Update vaadin.plugin.version (#11220)

* Use project.version for vaadin plugin

6 years agoSuppress unavoidable UIDetachedException (#11146)
Leif Åstrand [Tue, 2 Oct 2018 11:21:41 +0000 (14:21 +0300)]
Suppress unavoidable UIDetachedException (#11146)

* Suppress unavoidable UIDetachedException

Fixes #11144

6 years agofixed UI Test section
0xflotus [Tue, 2 Oct 2018 09:43:38 +0000 (11:43 +0200)]
fixed UI Test section

6 years agoFix link in "Vaadin Spring Tips" article (#11214)
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.

6 years agoUpdated JavaDoc of getColumn(..) method (#11179)
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

6 years agoReplaced Grid's internal size calculation fix with an indexing fix. (#11154)
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

6 years agoUpdated Upload.java (#11203)
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)

6 years agoIntroduce delay for ChameleonTheme test (#11210)
Sun Zhe [Mon, 1 Oct 2018 07:28:32 +0000 (10:28 +0300)]
Introduce delay for ChameleonTheme test (#11210)

6 years agoUpdate master to 8.7-SNAPSHOT (#11208)
Sun Zhe [Thu, 27 Sep 2018 06:09:37 +0000 (09:09 +0300)]
Update master to 8.7-SNAPSHOT (#11208)

6 years agoUpdate ComboBox internal state on new item added (#11094) 8.6.0.beta1
Teemu Suo-Anttila [Wed, 26 Sep 2018 12:16:40 +0000 (15:16 +0300)]
Update ComboBox internal state on new item added (#11094)

6 years agoFixing typo (#11207)
Mehdi Javan [Wed, 26 Sep 2018 11:09:35 +0000 (14:09 +0300)]
Fixing typo (#11207)

6 years agoUpdate release note for framework 8.6.0.beta1 (#11205)
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

6 years agoUpdating since tags (#11200) 8.6.0.alpha2
Mehdi Javan [Fri, 21 Sep 2018 12:55:12 +0000 (15:55 +0300)]
Updating since tags (#11200)

6 years agoOSGi resource registration via SCR (#11166)
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

6 years agoupdate uitest screenshot reference (#11197)
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

6 years agoFix/focus inside window chrome (#11142)
Mehdi Javan [Wed, 19 Sep 2018 06:20:04 +0000 (09:20 +0300)]
Fix/focus inside window chrome (#11142)

Fixes #11087

6 years agoFixing RadioButtonGroup exception in Window (#11181)
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.)

6 years agoUpdating chrome version to 69 in tests (#11182) 11176/head pr11176/r1
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.)

6 years agoSince tags in 8.5.2 (#11174)
Olli Tietäväinen [Fri, 7 Sep 2018 11:00:15 +0000 (14:00 +0300)]
Since tags in 8.5.2 (#11174)

6 years agoFix handler creation to happen on init (#11172)
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

6 years agoEnsure that HeaderRow is not null in Grid (#11165)
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

6 years agoFix handling of hidden Components in Grid(#10367)
Marco Collovati [Fri, 7 Sep 2018 08:06:03 +0000 (10:06 +0200)]
Fix handling of hidden Components in Grid(#10367)

6 years agoRemove objects from ActiveDataHandler that are no longer available in used DataProvid...
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.

6 years agoForce re-updating the resolutions of DateField (#11159)
Anastasia Smirnova [Thu, 6 Sep 2018 13:25:07 +0000 (16:25 +0300)]
Force re-updating the resolutions of DateField (#11159)

Fixes #11099

6 years agoRe-enable the Atmosphere heartbeat interceptor (#9877)
Petter Holmström [Thu, 6 Sep 2018 13:19:19 +0000 (16:19 +0300)]
Re-enable the Atmosphere heartbeat interceptor  (#9877)

6 years agoAdd API to access features of SelectionModels (#10939) 10471/head pr10471/r2
Teemu Suo-Anttila [Tue, 4 Sep 2018 12:45:08 +0000 (15:45 +0300)]
Add API to access features of SelectionModels (#10939)

6 years agoUpgrade to new Atmosphere (#11122), replace SSH proxy with java-based trivial one...
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

6 years agoUpgrading Vaadin Spring Add-on to 3.1.1 (#11158)
Mehdi Javan [Mon, 3 Sep 2018 17:45:07 +0000 (20:45 +0300)]
Upgrading Vaadin Spring Add-on to 3.1.1 (#11158)

6 years agoAdd fallback resolvers for CurrentInstance (#10974)
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.

6 years agoUpdate tests for new Chrome (#11150)
Ilia Motornyi [Fri, 31 Aug 2018 14:29:23 +0000 (17:29 +0300)]
Update tests for new Chrome (#11150)

6 years agoFix broken link to mobile d&d polyfill (#11127)
haiwan [Thu, 23 Aug 2018 08:14:28 +0000 (11:14 +0300)]
Fix broken link to mobile d&d polyfill (#11127)

6 years agoFix Grid stylename in documentation (#11130)
haiwan [Wed, 22 Aug 2018 09:29:52 +0000 (12:29 +0300)]
Fix Grid stylename in documentation (#11130)

6 years agoUpdate stale.yml (#11123)
Matti Tahvonen [Tue, 21 Aug 2018 12:05:51 +0000 (15:05 +0300)]
Update stale.yml (#11123)

6 years agoLift frozen columns up to allow some z-index changes beneath them. (#11117)
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

6 years agoSet correct GWT .dtd definition (#11110)
Ilia Motornyi [Mon, 13 Aug 2018 06:40:41 +0000 (09:40 +0300)]
Set correct GWT .dtd definition (#11110)

6 years agoImproving javadoc of Binder.removeBinding (#11107)
Mehdi Javan [Thu, 9 Aug 2018 06:07:49 +0000 (09:07 +0300)]
Improving javadoc of Binder.removeBinding (#11107)

Fixes #11091

6 years agoDocument how to handle cancelled file downloads. (#11079)
Ilia Motornyi [Tue, 7 Aug 2018 12:49:49 +0000 (15:49 +0300)]
Document how to handle cancelled file downloads. (#11079)

6 years agoFix Escalator to properly reset height by rows (#11090)
Mehdi Javan [Mon, 30 Jul 2018 15:53:24 +0000 (18:53 +0300)]
Fix Escalator to properly reset height by rows (#11090)

6 years agoAdd mention of ContextMenu changes to Release Notes (#11085) 8.6.0.alpha1
Teemu Suo-Anttila [Mon, 30 Jul 2018 11:24:45 +0000 (14:24 +0300)]
Add mention of ContextMenu changes to Release Notes (#11085)

6 years agoFix Grid MultiSelectionModel to always use getId (#11086)
Teemu Suo-Anttila [Mon, 30 Jul 2018 09:48:32 +0000 (12:48 +0300)]
Fix Grid MultiSelectionModel to always use getId (#11086)

Fixes #11083

6 years agoFix Grid Editor closing and disabling at same time (#11078)
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

6 years agoFix removal tabsheets if last one is selected (#11070)
Ilia Motornyi [Thu, 19 Jul 2018 12:32:05 +0000 (15:32 +0300)]
Fix removal tabsheets if last one is selected (#11070)

Fixes #10925

6 years agoFixed typo (#11072)
Ilia Motornyi [Thu, 19 Jul 2018 11:46:25 +0000 (14:46 +0300)]
Fixed typo (#11072)

6 years agoFix DataCommunicator not sending data on filter updates (#11068)
Teemu Suo-Anttila [Thu, 19 Jul 2018 10:50:33 +0000 (13:50 +0300)]
Fix DataCommunicator not sending data on filter updates (#11068)

6 years agoUpdate version numbers in Release Notes (#11062)
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

6 years agoFix Combobox adding an item with empty string (#11067)
Teemu Suo-Anttila [Wed, 18 Jul 2018 10:10:31 +0000 (13:10 +0300)]
Fix Combobox adding an item with empty string (#11067)

6 years agoAdvance spring addon version (#11063)
Ilia Motornyi [Wed, 18 Jul 2018 06:57:20 +0000 (09:57 +0300)]
Advance spring addon version (#11063)

6 years agoUpgrade ContextMenu version in BOM (#11065)
Teemu Suo-Anttila [Wed, 18 Jul 2018 06:56:42 +0000 (09:56 +0300)]
Upgrade ContextMenu version in BOM (#11065)

6 years agoUpdate TestBench version to 5.2.0 (#11058)
Guille [Tue, 17 Jul 2018 10:56:10 +0000 (13:56 +0300)]
Update TestBench version to 5.2.0 (#11058)

6 years agoFix Grid resetting row height on resize (#11056)
Teemu Suo-Anttila [Tue, 17 Jul 2018 09:13:08 +0000 (12:13 +0300)]
Fix Grid resetting row height on resize (#11056)

6 years agoPorted change from 7.7 to compatibility - ComboBox popup position while scrolling...
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

6 years agoFix Grid internal size calculations on vertical resize (#11046)
Teemu Suo-Anttila [Fri, 13 Jul 2018 12:08:47 +0000 (15:08 +0300)]
Fix Grid internal size calculations on vertical resize (#11046)

6 years agoFix canceling Grid Editor during EditorOpenEvent (#11038)
Teemu Suo-Anttila [Wed, 11 Jul 2018 19:06:59 +0000 (22:06 +0300)]
Fix canceling Grid Editor during EditorOpenEvent (#11038)

Fixes #11002

6 years agoFix CDI and IE11 tests (#11042)
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

6 years agoUnlock and refactor some API to create a new ContextMenu (#11041)
Ilia Motornyi [Wed, 11 Jul 2018 18:59:32 +0000 (21:59 +0300)]
Unlock and refactor some API to create a new ContextMenu (#11041)

6 years agoAdd xsrf token header if cookie is present (#11034)
Ilia Motornyi [Wed, 11 Jul 2018 10:24:21 +0000 (13:24 +0300)]
Add xsrf token header if cookie is present (#11034)

Fixes #9471

6 years agoAdd reminder of serialization to Grid documentation (#11037)
Ilia Motornyi [Wed, 11 Jul 2018 06:25:51 +0000 (09:25 +0300)]
Add reminder of serialization to Grid documentation (#11037)

6 years agoFix formatting, improve documentation on autoformat (#11033)
Ilia Motornyi [Tue, 10 Jul 2018 09:59:02 +0000 (12:59 +0300)]
Fix formatting, improve documentation on autoformat (#11033)

6 years agoFix initially selected CheckBox rendering in Safari (#11024)
Teemu Suo-Anttila [Tue, 10 Jul 2018 08:14:05 +0000 (11:14 +0300)]
Fix initially selected CheckBox rendering in Safari (#11024)

6 years agoImprove ComboBox keyboard behavior when an item is selected (#11031)
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

6 years agoEnable selection checkboxes with unbuffered editor (#11032)
Teemu Suo-Anttila [Tue, 10 Jul 2018 07:20:37 +0000 (10:20 +0300)]
Enable selection checkboxes with unbuffered editor (#11032)

Fixes #11028

6 years agoFix formatting (#11023)
Ilia Motornyi [Wed, 4 Jul 2018 06:55:41 +0000 (09:55 +0300)]
Fix formatting (#11023)

6 years agoFix Firefox coordinates, add missing screenshots (#11022)
Teemu Suo-Anttila [Tue, 3 Jul 2018 18:32:38 +0000 (21:32 +0300)]
Fix Firefox coordinates, add missing screenshots (#11022)

6 years agoFix wrapping div getting focused in CheckBoxGroup and RadioButtonGroup (#11021)
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

6 years agoFix expanding an added TreeGrid node (#11018)
Teemu Suo-Anttila [Mon, 2 Jul 2018 12:43:02 +0000 (15:43 +0300)]
Fix expanding an added TreeGrid node (#11018)

Fixes #9997

6 years agoAdd pluginRepository to test/pom.xml (#11015)
Teemu Suo-Anttila [Mon, 2 Jul 2018 12:01:13 +0000 (15:01 +0300)]
Add pluginRepository to test/pom.xml (#11015)

6 years agoFix Firefox test issues (#11017)
Teemu Suo-Anttila [Mon, 2 Jul 2018 11:21:52 +0000 (14:21 +0300)]
Fix Firefox test issues (#11017)

6 years agoAdd alternative screenshot for Flash test (#11013)
Teemu Suo-Anttila [Fri, 29 Jun 2018 16:08:50 +0000 (19:08 +0300)]
Add alternative screenshot for Flash test (#11013)

6 years agoRemove 8.5 enhancements from master release notes (#11010)
Mehdi Javan [Fri, 29 Jun 2018 09:46:49 +0000 (12:46 +0300)]
Remove 8.5 enhancements from master release notes (#11010)

6 years agoFix ComboboxScrollableWindowTest to use assertion (#11014)
Teemu Suo-Anttila [Fri, 29 Jun 2018 09:18:45 +0000 (12:18 +0300)]
Fix ComboboxScrollableWindowTest to use assertion (#11014)

6 years agoUpdate project version to 8.6-SNAPSHOT (#11011)
Mehdi Javan [Fri, 29 Jun 2018 08:10:55 +0000 (11:10 +0300)]
Update project version to 8.6-SNAPSHOT (#11011)

6 years agoAdd mention of Tree being Focusable (#11008)
Teemu Suo-Anttila [Thu, 28 Jun 2018 12:43:02 +0000 (15:43 +0300)]
Add mention of Tree being Focusable (#11008)

6 years agoUpgrade TestBench version to 5.2 (#11005)
Teemu Suo-Anttila [Thu, 28 Jun 2018 12:07:42 +0000 (15:07 +0300)]
Upgrade TestBench version to 5.2 (#11005)