summaryrefslogtreecommitdiffstats
path: root/uitest
Commit message (Collapse)AuthorAgeFilesLines
...
* Fix typos (#10124)Ahmed Ashour2017-10-0419-63/+67
|
* Add role="grid" and aria-multiselectable to grid (#10009)Knoobie2017-10-042-0/+100
| | | Also adds aria-selected for grid rows.
* Use static import of Assert in tests (#10126)Ahmed Ashour2017-10-03431-2376/+2743
| | | | Also removes dependency on junit.framework.TestCase .
* Remove unneeded .toArray() (#10131)Ahmed Ashour2017-10-031-1/+1
| | | Use for each loop.
* Use enhanced for loop for arrays. (#10121)Ahmed Ashour2017-10-0215-66/+58
|
* Simplify conditional logic. (#10122)Ahmed Ashour2017-10-022-2/+0
| | | And remove unused imports.
* Use enhanced for loop instead of Iterator. (#10100)Ahmed Ashour2017-09-295-40/+14
|
* Use StandardCharsets.UTF_8 (#10113)Ahmed Ashour2017-09-294-12/+12
|
* Remove auto-generated comment (#10111)Ahmed Ashour2017-09-2926-114/+23
|
* Handle 'z' (timezone) in AbstractDateField.setDateFormat() (#8844)Ahmed Ashour2017-09-282-0/+282
|
* Use interface instead of implementation (#10073)Ahmed Ashour2017-09-2831-52/+69
|
* Use single character for StringBuilder.append (#10102)Ahmed Ashour2017-09-286-16/+16
|
* Update browser version test for Chrome 61 (#10098)Henri Sara2017-09-271-1/+1
|
* Fix typos (#10095)Ahmed Ashour2017-09-277-7/+7
|
* Support addCloseListener for Notification (#10027)Ahmed Ashour2017-09-272-0/+96
| | | | | Converts Notification to an Extension and adds support for listening to the closing of notifications. Fixes #888
* Add option to use PushState instead of URI fragments in Navigator (#10042)Teemu Suo-Anttila2017-09-275-0/+33
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Navigator now by default uses pushState and normal URLs * added documentation for pushState and updated Navigator documentation * improving docs etc, adding one TODO to be solved before merging * pushState/replaceState no work better with changing titles * Making uri fragment navigator work when not using specially mapped UI * Revert to older default, add annotation for selecting * Fix tests, add null checks * Reorder if-clause, fix tests * Revert unnecessary test change * Use correct variable in UI, fix test clean up * Updates to JavaDocs, fix some methods and tests * Add comments, fix test ui, TODO for fallbacks * Navigation documentation, JavaDocs, removed TODOs * Documentation fixes * Improve JavaDocs * Fix link name in documentation * Improve throws declaration in getLocation * Change documentation about the PushState based navigation * Add since tags * Add since tags for UI
* Implement error level on client side (#9817)Adam Wagner2017-09-274-3/+373
| | | | | | | Add additional class names and style to components and error indicators to distinguish different error levels. Vaadin 8 implementation of #9816. Cherry picked changes and added compatibility package component changes and tests. Resolves #3139
* Relayout GridLayout when font loading completes (#10077)Henri Sara2017-09-265-8/+143
| | | | | | If a GridLayout is used and font loading is not complete, force another layout after all fonts are loaded. Fixes #9921 Fixes #8207
* Remove unused @VERSION@Ahmed Ashour2017-09-258-8/+0
|
* Fix TreeGrid double click event in hierarchy column (#10070)Adam Wagner2017-09-252-0/+68
| | | Fixes #9868
* Fix typos (#10071)Ahmed Ashour2017-09-251-2/+2
| | | And use varargs in a test.
* Construct array inline (#10068)Ahmed Ashour2017-09-2376-135/+132
| | | And some trivial test enhancements
* Add empty line at end of fileAhmed Ashour2017-09-2369-73/+69
|
* Fix javadoc references (#10067)Ahmed Ashour2017-09-2318-37/+0
| | | And remove unused imports.
* Remove unused methods. (#10058)Ahmed Ashour2017-09-224-9/+2
|
* Replace CRLF with LF (#10062)Henri Sara2017-09-223-175/+175
| | | | | | | After this change, .gitattributes will take care of keeping native line endings. * Replace CRLF with LF in non-Java files
* Replace tabs with spaces in Java filesHenri Sara2017-09-221-3/+3
|
* Update modifier order to follow Java Specification suggestions (#10050)Ahmed Ashour2017-09-2122-42/+42
| | | Also includes some other minor cleanup.
* Access static members in a static way (#10054)Ahmed Ashour2017-09-219-23/+22
|
* Use String.isEmpty() (#10045)Ahmed Ashour2017-09-2111-16/+16
|
* Remove unused methods (#10020)Ahmed Ashour2017-09-207-67/+0
|
* Fix ColorPickerGrid indexingHenri Sara2017-09-202-0/+77
| | | Fixes #9018
* Use simple class namesAhmed Ashour2017-09-204-5/+5
|
* Show validation error selecting invalid date from DateField (#10013)Marco Collovati2017-09-202-0/+88
| | | | | | | | | | Component error was cleared after selecting a date from calendar popup, even if the date is invalid due to validation errors or if user programmatically sets an UserError. This change inverts the order of setValue() and setComponentError(null) in order to preserve errors set by ValueChangeListeners (e.g. Binder validators). Fixes #10011
* Use String.isEmpty()Ahmed Ashour2017-09-1912-18/+18
|
* Remove unneeded ArrayList constructionAhmed Ashour2017-09-191-4/+3
|
* Replace iterators with enhanced for loops (#10018)Ahmed Ashour2017-09-1911-51/+32
| | | This change also includes some other minor cleanup.
* Add aria-sort to Grid (#10007)Knoobie2017-09-181-0/+8
| | | | | | | | | This adds basic support for aria-sort for Grid (https://www.w3.org/TR/wai-aria-1.1/#aria-sort). - aria-sort is not added, if the column is not sortable - aria-sort="none" is added, if the column is sortable but currently not sorted - aria-sort="ascending" is added, if the column is sorted by asc - aria-sort="descending" is added, if the column is sorted by desc - aria-sort="other" is added, if more than 1 column is sorted, currently there is no aria-sort-order
* Remove redundant versions in POMs (#9990)Ahmed Ashour2017-09-141-3/+0
|
* Add DOCTYPE for GWT module filesAhmed Ashour2017-09-141-0/+2
|
* Unify exec-maven-plugin to 1.6.0Ahmed Ashour2017-09-131-1/+0
|
* Fix varargs warningsAhmed Ashour2017-09-1317-27/+23
|
* Fix generics type in test (#9977)Ahmed Ashour2017-09-131-1/+1
| | | This fixes a compilation error with Eclipse Oxygen.
* Remove element explicitly when reordering tree grid rows (#9952)Adam Wagner2017-09-112-0/+68
| | | | | | | Under certain circumstances IE 11 (11.0.45 / 11.0.9600.18762) produces an exception when collapsing/expanding rows (particularly the first child after the very first element) in a TreeGrid within a Window. This workaround removes the row explicitly before inserting, instead of letting JS handle it. Fixes #9850
* Update version to 8.2-SNAPSHOT (#9946)Teemu Suo-Anttila2017-09-081-1/+1
|
* Fix making components visible by push (#9934)Henri Sara2017-09-065-49/+151
| | | | | | | | Fix connector tracker cleanup for the case where a component is hidden by a request and is made visible again by push. This fixes a regression caused by #9305. Fixes #9905
* Force re-measurement of CheckBoxGroup and RadioButtonGroup (#9901)Petter Holmström2017-09-044-0/+116
| | | | | | The related tests have a workaround for another (Chrome specific) GridLayout bug #9921. Those workarounds should be removed once that issue is fixed. Fixes #9148
* Position caption correctly in GridLayout (#9909)Petter Holmström2017-09-042-0/+76
| | | | | Position caption correctly when using different vertical alignment than TOP in GridLayout. Fixes #7895
* Make BaseThemeTest more stable on IE11Henri Sara2017-08-311-1/+2
| | | | | Try to make the test more stable by using a different way of detecting the presence of a notification. This approach is used e.g. in GridComponentsTest.
* Omit duplicate caption for a Panel in a CompositeHenri Sara2017-08-302-0/+76
| | | | | | Correctly render components that handle their own captions inside a Composite. Fixes #9848