aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Update version number to 8.3-SNAPSHOT (#10348)Teemu Suo-Anttila2017-11-2265-65/+65
|
* Fix missing v-disabled for RadioButtonGroup and CheckBoxGroup options (#10332)Pekka Hyvönen2017-11-226-2/+231
| | | | | | | * 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-222-0/+105
|
* Disabled ComboBox should not open popup on pasting (Fixes #7898) (#10240)Ahmed Ashour2017-11-224-21/+79
|
* Fix nested bean property name (#10271)schaerl2017-11-224-39/+72
| | | | | | | | | * Changed retrieval of names of nested properties (#10159) The getName() function in NestedBeanPropertyDefinition will return only the top level name, which causes problems when adding a nested property that has the same name as a non-nested (e.g "value" & "sub.value") This change should fix this behaviour by changing the return value of "getName()" of NestedBeanPropertyDefinition and introducing a function "getTopLevelName()" that only returns the last part of the full name for where it's needed
* Improve Binder JavaDocs and APIs (#10347)Teemu Suo-Anttila2017-11-212-7/+30
| | | This patch also adds ValueChangeEvent as a parameter to field value change method in Binder.
* Create DescriptionGenerator in package com.vaadin.ui (#10346)Aleksi Hietanen2017-11-219-10/+39
| | | | 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-2123-114/+97
| | | | | | | | | | | | | | | | | * 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
* Extract AbstractBeanPropertyDefinition and PropertyFilterDefinition (#10344)Aleksi Hietanen2017-11-215-118/+192
| | | | | This commit extracts the private nested class AbstractBeanPropertyDefinition from BeanPropertySet to a public class of package com.vaadin.data. Additionally, the nested protected class PropertyFilterDefinition is extracted from NestedBeanPropertyDefinition to a public class in package com.vaadin.data.
* Issue3922disableditem (#10259)Ansku2017-11-214-48/+230
| | | | | | | | | | | * 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
* FileResource to use bufferSize, and StreamResource to use getCacheTime() ↵Ahmed Ashour2017-11-214-2/+50
| | | | (#10247)
* Remove unused imports (#10330)Ahmed Ashour2017-11-2129-42/+9
|
* Update testbench version (#10336)Guille2017-11-203-26/+2
|
* Add known PushStateNavigation issue to release notes (#10334)Teemu Suo-Anttila2017-11-171-0/+3
|
* Rename GridDragger to GridRowDragger (#10333)Pekka Hyvönen2017-11-1713-45/+45
| | | 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-169-5/+208
| | | | This pathc also switches GridDragger to by default not allow drops on rows when the grid has been sorted.
* Remove empty li element from release notes (#10326)Teemu Suo-Anttila2017-11-161-1/+0
|
* Update since tags in JavaDoc (#10325)8.2.0.alpha3Teemu Suo-Anttila2017-11-1523-43/+43
|
* Fix click listener in WidgetSet test (#10324)Teemu Suo-Anttila2017-11-151-2/+2
|
* Add helper for Grid row DnD (#10255)Pekka Hyvönen2017-11-1515-109/+1364
| | | | | | | | | | | | | | | | | | * 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 mention of Wildfly 11 support and a test for it (#10319)Teemu Suo-Anttila2017-11-153-1/+46
|
* Update CDI tutorial wiki link (#10322)Olli Tietäväinen2017-11-151-1/+1
|
* Add new drop mode ON_GRID for GridDropTarget (#10296)Pekka Hyvönen2017-11-159-36/+361
| | | | | | | | | | | | | | | | | * 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 TreeGrid to use correct super constructor (#10291)Jerome Meyer2017-11-142-26/+35
| | | Fixes #10195
* Improve nested property support for Binder (#9925)Olli Tietäväinen2017-11-144-12/+477
| | | Fixes #9210
* Add API to read Binding value from bean (#10316)Teemu Suo-Anttila2017-11-132-3/+43
|
* Set no-store headers on UIDL messagesLeif Åstrand2017-11-101-3/+9
| | | | UIDL might contain sensitive information that we should prevent from being stored anywhere.
* set default ContentMode PREFORMATTED in parameterless TooltipInfo ↵Olli Tietäväinen2017-11-101-0/+1
| | | | constructor, fixes undefined enum value access in VTooltip.setTooltipText
* Fix setting custom tab index for TabSheet or Accordion (#9574) (#10278)Ansku2017-11-105-7/+58
|
* Add ContentMode for row and cell descriptions in Grid (#10282)Teemu Suo-Anttila2017-11-107-49/+295
|
* Update README.md (#10302)Olli Tietäväinen2017-11-101-1/+1
|
* Relax mapper access in HierarchicalDataCommunicator Ilia Motornyi2017-11-101-0/+8
| | | Fixes #10292
* Remove deprecated usage of ApplicationConnection.hasEventListeners() (#10248)Ahmed Ashour2017-11-075-8/+13
| | | From VDateField and VWindow
* Skip scheduled flush if clear() is called (#10289)Leif Åstrand2017-11-071-8/+15
| | | Based on vaadin/flow#2834
* Make focus circulate in modal dialog to improve accessibility (#10260)Péter Török2017-11-075-4/+47
| | | Make focus circulate in modal dialog to improve accessibility
* HasItems.setItems(T... items) should allow edits (#10290)Pekka Hyvönen2017-11-065-3/+92
| | | | | | | | | * HasItems.setItems(T... items) should allow edits Arrays.asList() creates a immutable Arrays.ArrayList, preventing users from doing dataProvider.getItems() and updating the returned collection. This makes it impossible to keep the same data provider, update it and keep the filters & sorting, and then just call dataProvider.refreshAll() to get changes visible. We should not require users to create a new data provider in this case. This is the same for DataProvider.ofItems(T... items) * fix missing whitespace from test error message
* Relax TreeGrid and Tree members access modifiers. (#10293)Ilia Motornyi2017-11-063-6/+44
| | | | | | | | * Relax TreeGrid and Tree members access modifiers. Fixes #10292 * Fixes after review
* Use Logger instead of VConsole (#10249)Ahmed Ashour2017-11-0633-111/+232
| | | Because VConsole is deprecated and it recommends using Logger instead
* Fix javadoc ending (#10274)Ahmed Ashour2017-11-0628-102/+102
|
* Fix link format (#10269)Henri Muurimaa2017-11-061-1/+1
|
* Fix typo (#10295)Mikko Inkinen2017-11-061-1/+1
|
* Use lambda expressions. (#10268)Ahmed Ashour2017-11-01538-10755/+4776
|
* Use local variable for getWidget(). (#10253)Ahmed Ashour2017-10-3128-566/+589
| | | | | 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-3138-128/+134
|
* Remove redundant interface already implemented by super class. (#10258)Ahmed Ashour2017-10-3182-182/+104
|
* Fix combo box suggestion popup height (#10256)Adam Wagner2017-10-305-3/+91
| | | Fixes #10214
* add Grid.Column#get/setAssistiveCaption (#10219)Knoobie2017-10-307-2/+186
| | | | | | | | | | | | | | | | | | | | | | | | * 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-2775-1351/+734
| | | Also improve naming by replacing one-letter variable names.
* Use lambda with Listeners (#10222)Ahmed Ashour2017-10-26213-2220/+1088
| | | Also use "event" as the name for events
* Improve naming of fields and variables (#10242)Ahmed Ashour2017-10-2687-431/+431
| | | | | * Variable names to conform to naming convention. * Use static constants where it makes sense