| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
|
|
| |
Fixes #9765
|
|
|
| |
Fixes #9477
|
| |
|
| |
|
|
|
| |
Fixes #10536
|
|
|
| |
Fixes #7912
|
|
|
|
|
|
|
|
|
|
| |
* Adding disabled attribute to the NativeSelect
* Merge branch 'master' into nativeSelectDisabled
* Merge branch 'master' into nativeSelectDisabled
* Correct formatting issues
|
|
|
| |
Fixes #7527
|
|
|
|
| |
* Fix performance issue in Grid initial render with Footer
|
|
|
| |
Fixes #10660
|
|
|
|
|
|
|
|
|
|
| |
* Enable setting cursor after the last character
Resolves #9157
* Reformat the code
* Reformat the code using conventions
|
|
|
| |
Fixes #10624
|
|
|
|
| |
* Allow configuring content modes for Grid cell tooltips
|
|
|
|
|
|
| |
Fixes #10146
Fixes #10543
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Fixes #10429
* implement focus handing in RadioButtonGroup, fixes #10429
* Merge branch 'master' of https://github.com/vaadin/framework into radiobuttongroup-focus
* merge
* Merge branch 'master' of https://github.com/vaadin/framework into radiobuttongroup-focus
* fix initial focus handling also on CheckBoxGroup and add tests
* add license headers
* Merge branch 'master' of https://github.com/vaadin/framework into radiobuttongroup-focus
* changed client to use lambdas and refactored focus testing to parent class
* made FocusTest abstract
* Merge branch 'master' of https://github.com/vaadin/framework into radiobuttongroup-focus
* don't allow focusing on disabled items & refactor focusing first item
|
| |
|
| |
|
|
|
| |
Fixes #10488
|
|
|
| |
Fixes #10428
|
|
|
| |
Fixes #10454
|
|
|
| |
Fixes #10284
|
| |
|
| |
|
| |
|
| |
|
|
|
| |
Fixes #9635
|
|
|
|
|
| |
Also fixes the problem that notifications were never removed on the server side
Fixes #2114, fixes #10481
|
|
|
|
| |
Fixes #7833
|
|
|
|
|
| |
Adds the ability to set the content mode for the description of a menu item that is part of a menu bar.
This functionality was already available for every AbstractComponent but missing for the menu items of menu bars.
If no content mode is specified it defaults to the PREFORMATED content mode.
|
|
|
| |
Fixes #10476
|
|
|
| |
Fixes #10304
|
| |
|
|
|
| |
Fixes #8918
|
|
|
| |
Fixes #9663
|
|
|
| |
Fixes `DateField blur event fires when focus gets to the "calendar button"` #1008
|
|
|
|
|
|
|
| |
* Fix missing v-disabled for RadioButtonGroup
* Fix missing v-disabled for CheckBoxGroup
Resolves #9258
|
| |
|
| |
|
|
|
|
| |
Deprecate com.vaadin.ui.components.grid.DescriptionGenerator
and subclass it from the new DescriptionGenerator.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* 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
|
|
|
|
|
|
|
|
|
|
|
| |
* 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
|
| |
|
|
|
| |
The old name GridDragger gave an impression that you're dragging the whole grid instead of rows.
|
|
|
|
| |
This pathc also switches GridDragger to by default not allow drops on rows when the
grid has been sorted.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* 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
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.
|
| |
|
| |
|
|
|
| |
Make focus circulate in modal dialog to improve accessibility
|