summaryrefslogtreecommitdiffstats
path: root/uitest
Commit message (Collapse)AuthorAgeFilesLines
* Fix tests for Chrome 63 and focus issues in IE11 (#10495)Teemu Suo-Anttila2018-01-107-19/+18
|
* Fix space key on selection checkbox to select grid row (#10388)Marco Collovati2018-01-101-0/+18
| | | Fixes #10221
* Backport fix for removing Notifications on close (#10504)Teemu Suo-Anttila2018-01-102-4/+60
|
* Fix selection column size calculation without data (#10384)Teemu Suo-Anttila2017-12-072-0/+86
|
* Fix styling of Window control buttons to show focus (#10285)Anna Koskinen2017-12-072-0/+73
| | | Fixes #8918
* Prevent killing UI if heartbeats are pending (#10371)Teemu Suo-Anttila2017-12-072-0/+94
| | | Fixes #9663
* Fix RadioButtonGroupTest imports (#10354)Teemu Suo-Anttila2017-11-241-8/+8
|
* Fix missing v-disabled for RadioButtonGroup and CheckBoxGroup options (#10332)Pekka Hyvönen2017-11-244-0/+217
| | | | | | | * Fix missing v-disabled for RadioButtonGroup * Fix missing v-disabled for CheckBoxGroup Resolves #9258
* Test for MenuBar's WAI-ARIA attributes (#3922) (#10349)Ansku2017-11-232-0/+105
|
* Create DescriptionGenerator in package com.vaadin.ui (#10346)Aleksi Hietanen2017-11-213-3/+3
| | | | Deprecate com.vaadin.ui.components.grid.DescriptionGenerator and subclass it from the new DescriptionGenerator.
* Fix issues from API review for 8.2 (#10342)Aleksi Hietanen2017-11-212-3/+3
| | | | | | | | | | | | | | | | | * Rename HierarchicalDataCommunicator#getMapper to getHierarchyMapper * Make rpc field in Notification private * Change DropIndexCalculator.ALWAYS_DROP_TO_END to a generic static method * Move EditorImpl#editRow documentation to the interface level * Correct GridDragEndEvent, GridDragStartEvent constructor javadocs * Revert SharedState.registeredEventListeners to a Set * Rename GridDropTarget dropAllowedOnSortedGridRows * Rename ColumnState.contentMode to tooltipContentMode
* Issue3922disableditem (#10259)Ansku2017-11-212-0/+31
| | | | | | | | | | | * Accessibility for MenuBar (#3922) * TabIndex handling fix and an indexing tweak * Make disabled MenuItems selectable for accessibility (#3922) - It should be possible to navigate to a disabled MenuItem, even if triggering the related command is disabled * Refactor primary style name and aria attribute handling to own method
* Remove unused imports (#10330)Ahmed Ashour2017-11-216-9/+0
|
* Update testbench version (#10336)Guille2017-11-211-24/+0
|
* Rename GridDragger to GridRowDragger (#10333)Pekka Hyvönen2017-11-174-12/+12
| | | The old name GridDragger gave an impression that you're dragging the whole grid instead of rows.
* Add documentation on GridDragger (#10328)Pekka Hyvönen2017-11-161-0/+62
| | | | This pathc also switches GridDragger to by default not allow drops on rows when the grid has been sorted.
* Add helper for Grid row DnD (#10255)Pekka Hyvönen2017-11-154-95/+222
| | | | | | | | | | | | | | | | | | * Added Griddragger. * Refactored the GridDragger to match FW style Unit tests, Test UI and documentation to come next. * Change DropMode to BETWEEN and add Test UIs * Simplify GridDragger API * Fixes and unit tests for GridDragger Fixed issues regarding drop index calculation when sourche and target grid is the same. When the ListDataProvider is not internally using List, always drops to the end. Updates the old data provider instead of creating a new one to preserve filters&sorting.
* Add new drop mode ON_GRID for GridDropTarget (#10296)Pekka Hyvönen2017-11-151-1/+8
| | | | | | | | | | | | | | | | | * Add new drop mode ON_GRID for GridDropTarget Also adds a way to not accept drops on rows when the user has sorted the grid. This way the bad UX can be avoided for showing the drop indicator for the wrong place when the grid has been sorted. This has not been made default behavior to GridDropTarget since it would change behavior compared to 8.1. Instead if is triggerable via API in GridDropTarget. * Refactor sorted grid drop logic to server side * Block setDropMode calls Blocking setDropMode set values if the grid has been sorted and drop on sorted rows is not allowed. The value is used once the grid is not sorted anymore or the drops are allowed on sorted rows.
* Fix setting custom tab index for TabSheet or Accordion (#9574) (#10278)Ansku2017-11-102-7/+25
|
* Add ContentMode for row and cell descriptions in Grid (#10282)Teemu Suo-Anttila2017-11-102-29/+170
|
* Make focus circulate in modal dialog to improve accessibility (#10260)Péter Török2017-11-073-3/+15
| | | Make focus circulate in modal dialog to improve accessibility
* Use Logger instead of VConsole (#10249)Ahmed Ashour2017-11-061-2/+7
| | | Because VConsole is deprecated and it recommends using Logger instead
* Use lambda expressions. (#10268)Ahmed Ashour2017-11-01493-9946/+4276
|
* Use local variable for getWidget(). (#10253)Ahmed Ashour2017-10-311-6/+7
| | | | | In some places, getWidget() is called many times, and I believe this can have a litte performance improvement, since in some cases super.getWidget() is called more than once.
* Fix end of line comments, which were made by automatic formatter (#10234)Ahmed Ashour2017-10-3117-46/+54
|
* Remove redundant interface already implemented by super class. (#10258)Ahmed Ashour2017-10-319-21/+9
|
* Fix combo box suggestion popup height (#10256)Adam Wagner2017-10-304-0/+80
| | | Fixes #10214
* add Grid.Column#get/setAssistiveCaption (#10219)Knoobie2017-10-302-0/+89
| | | | | | | | | | | | | | | | | | | | | | | | * add Grid#Column#get/setAssistiveCaption * fix test and update doc * move testGridAssistiveCaption to GridTest * delete test file * delete test file * Delete GridAssistiveCaptionTest.java * Create GridAssistiveCaptionTest * Create GridAssistiveCaption * Rename GridAssistiveCaption to GridAssistiveCaption.java * Rename GridAssistiveCaptionTest to GridAssistiveCaptionTest.java * Reformat using eclipse
* Use lambda with Handlers (#10229)Ahmed Ashour2017-10-2730-388/+183
| | | Also improve naming by replacing one-letter variable names.
* Use lambda with Listeners (#10222)Ahmed Ashour2017-10-26162-1863/+831
| | | Also use "event" as the name for events
* Remove trailing spaces (#10224)Ahmed Ashour2017-10-269-19/+19
|
* Grid column to be sortable when implemented/supported (Fixes #8792). (#10190)Ahmed Ashour2017-10-238-32/+303
| | | | | | | | | | | * Grid column to be sortable when implemented/supported * Fix GridDeclarativeTest * Parameterize to Grid<Person> * Revert Parameterize to Grid<Person>, JDK with generics. * Assertions for other columns * Fix test Fixes #8792
* Fix typos (#10213)Ahmed Ashour2017-10-202-2/+2
| | | | | | * Fix typos * Fix
* Check class name type on Grid cell mouse over (#10194)Adam Wagner2017-10-202-0/+64
| | | | | | | | | | * Check whether className is of type string * Move string type checker method to widget util * Fix formatting of WidgetUtil * Break svg into lines
* Improve role usage in grid (#10206)Knoobie2017-10-201-1/+9
| | | | | | | | | | | | | | | | | | | | | | | | * add role="row" and role="gridcell" * optimize code and add additional rows for the header * add simple test * improve code and add rowgroup * add debug log * add more log to test * remove debug test info and add role before appending to tr * wording - change contains to contain * create enum for magic strings, change comments and method signature * rename enum to be singular and rename param roleName to role * update javadoc, rename and make enum public
* Use .toLowerCase and .toUpperCase(Locale.ROOT) (#10182)Ahmed Ashour2017-10-2039-162/+223
| | | | | | | | * Use .toLowerCase and .toUpperCase(Locale.ROOT) * Spaces * add spaces after if(
* Scheduler.ScheduledCommand and RepeatingCommand to be lambda (#10203)Ahmed Ashour2017-10-201-287/+130
| | | | | | | | * Scheduler.ScheduledCommand and RepeatingCommand to be lambda * Restore <table> in javadoc * Fix docs
* Add spaces after 'if' and 'for' in JavaScript (#10199)Ahmed Ashour2017-10-205-7/+7
| | | | | | | | * Add spaces after 'if' and 'for' in JavaScript * Revert to old format * Remove whitespaces
* Simplify lambda expressions (#10198)Ahmed Ashour2017-10-2039-313/+248
| | | | | | | | * Simplify lambda expressions And remove unneeded 'return' keyword. * Format
* AbstractDateField: set value after being invalid (#10187)Ahmed Ashour2017-10-203-9/+114
| | | | Fixes #9763 Fixes #9978
* Fix AbstractDateField to correctly show week day names (#10188)Ahmed Ashour2017-10-163-2/+106
| | | Fixes #9200
* Simplify waitUntil() in tests (#10181)Ahmed Ashour2017-10-1323-200/+58
|
* Use Collection.isEmpty() (#10172)Ahmed Ashour2017-10-1212-24/+25
|
* Add ErrorLevel to Validators and results (#10099)Teemu Suo-Anttila2017-10-112-0/+70
| | | Fixes #9792
* Add aria-rowcount to grid (#10167)Knoobie2017-10-115-1/+255
| | | This is based on discussion from vaadin/vaadin-grid#1023 .
* Prevent Grid refreshAll from getting stuck due mismatched state (#10161)Ansku2017-10-101-0/+93
| | | Fixes #10038
* Fix typos (#10158)Ahmed Ashour2017-10-103-6/+9
|
* Remove unneeded .toString() (#10141)Ahmed Ashour2017-10-1042-107/+86
|
* Edit grid row by index - server side (#10040)Piotr Wilkin2017-10-102-2/+32
| | | | | Opening grid editor from server side. Fixes #8477. Addressing #8820 will be the user's responsibility as fetching index of item might be slow.
* Use StringBuilder instead of StringBuffer (#10154)Ahmed Ashour2017-10-097-9/+9
|