Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Added Note about TextField in Header cell (#11858) | Tatu Lund | 2020-01-13 | 1 | -0/+7 |
| | | | Fixes https://github.com/vaadin/framework/issues/9089 | ||||
* | Update Chrome version, snapshots and fix tests (#11684) | Zhe Sun | 2019-08-05 | 1 | -1/+1 |
| | |||||
* | Update broken docs syntax in github (#11596) | Zhe Sun | 2019-05-23 | 26 | -54/+52 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | * Add delay to the unstable test * Add delay for unstable tests * Update broken docs syntax in github * Merge branch 'master' into ZheSun88-patch-1 * Update doc reference syntax * Merge branch 'ZheSun88-patch-1' of github.com:vaadin/framework into ZheSun88-patch-1 # Conflicts: # documentation/components/components-overview.asciidoc * Merge branch 'master' into ZheSun88-patch-1 * use .asciidoc * Merge remote-tracking branch 'origin/ZheSun88-patch-1' into ZheSun88-patch-1 * use .asciidoc * Merge branch 'master' into ZheSun88-patch-1 | ||||
* | Fixing broken links in V8 documentation (#11591) | juhopiirainen | 2019-05-22 | 1 | -4/+4 |
| | |||||
* | Fix the broken links in the documentation | juhopiirainen | 2019-05-15 | 1 | -5/+5 |
| | |||||
* | Mention DataProvider training videos in components-grid.asciidoc (#11494) | alexandruchiuariu | 2019-03-28 | 1 | -0/+2 |
| | |||||
* | Fix code example (#11487) | A.Mahdy AbdelAziz | 2019-03-11 | 1 | -3/+3 |
| | | | Fix example of using grid.setStyleGenerator in one line | ||||
* | added [source, java] for ComponentRenderer samples (#11428) | Olli Tietäväinen | 2019-01-22 | 1 | -0/+2 |
| | |||||
* | Descriptive comment for TwinColSelect - no lazy load #11025 (#11350) | DiegoSanzVi | 2018-12-04 | 1 | -0/+5 |
| | | | | | | | | * Descriptive comment for TwinColSelect - no lazy load #11025 It documents the issue #11025 https://github.com/vaadin/framework/issues/11025#issuecomment-443506307 | ||||
* | Removes wrong suggestion from checkbox documentation (#11324) | tmattsso | 2018-11-20 | 1 | -2/+1 |
| | |||||
* | Corrected method name TreeDataProvider#getTreeData (#11286) | Alejandro J. C De Baca | 2018-11-01 | 1 | -1/+1 |
| | | | | | | * Corrected method name TreeDataProvider#getTreeData The method name was incorrect in the documentation - was showing `getData()` but should be `getTreeData()`. | ||||
* | Add reminder of serialization to Grid documentation (#11037) | Ilia Motornyi | 2018-07-11 | 1 | -10/+11 |
| | |||||
* | Update combobox docs to use setNewItemProvider (#10901) | Anastasia Smirnova | 2018-05-08 | 1 | -4/+3 |
| | |||||
* | Fix HtmlRenderer code example in documentation (#10790)8.4.0.alpha2 | Boppleton Industries | 2018-04-05 | 1 | -1/+1 |
| | |||||
* | Small docs fix (#10749) | Ilia Motornyi | 2018-04-03 | 1 | -3/+3 |
| | |||||
* | Update components-grid.asciidoc | Anastasia Smirnova | 2018-03-06 | 1 | -1/+1 |
| | |||||
* | Add css class to selected items in CheckboxGroup and RadiobuttonGroup (#10394) | Marco Collovati | 2017-12-28 | 1 | -1/+2 |
| | | | | | | Adds v-select-option-selected class to the selected group items in CheckboxGroup and RadiobuttonGroup Fixes #3387 | ||||
* | Fix wrong method name in Grid docs (#10171) | Pekka Hyvönen | 2017-10-11 | 1 | -1/+1 |
| | |||||
* | Replace CRLF with LF (#10062) | Henri Sara | 2017-09-22 | 2 | -323/+323 |
| | | | | | | | After this change, .gitattributes will take care of keeping native line endings. * Replace CRLF with LF in non-Java files | ||||
* | Remove drag and drop from Tree doc (#9992) | Olli Tietäväinen | 2017-09-19 | 1 | -1/+0 |
| | | | Tree does not support drag and drop right now (see #9804). | ||||
* | Changed ContentMode Package in Label doc | Jonathan Ilk | 2017-09-08 | 1 | -1/+1 |
| | |||||
* | Update components-grid.asciidoc (#9813) | Henri Sara | 2017-08-11 | 1 | -2/+2 |
| | | | Updates related to #9810 | ||||
* | Fix AbstractDateField parsing and errors handling, support locale (#9740) | Ilia Motornyi | 2017-08-02 | 1 | -2/+3 |
| | | | | | Fixes #9518 Fixes #8991 Fixes #8687 | ||||
* | Remove warnings about pre-release content in documentation (#9737) | Henri Sara | 2017-07-26 | 4 | -8/+0 |
| | | | Resolves #9191 | ||||
* | Add styling for ComponentRenderer wrapper div (#9691) | Teemu Suo-Anttila | 2017-07-19 | 1 | -0/+1 |
| | | | Fixes #9170 | ||||
* | Implement tree item context click | Ilia Motornyi | 2017-07-10 | 1 | -0/+11 |
| | | | | | Fixes #9606 Fixes #9645 Fixes #9647 | ||||
* | Clarification for GridContextClickEvent | Ilia Motornyi | 2017-07-10 | 1 | -1/+9 |
| | |||||
* | Add an optional HasValue to a ValueContext | Ilia Motornyi | 2017-06-29 | 1 | -1/+5 |
| | |||||
* | Add presentation value providers for Grid (#9553) | Teemu Suo-Anttila | 2017-06-27 | 1 | -0/+29 |
| | | | | | | This patch changes Grid Columns, so they can have different value and presentation types. A presentation provider can be given when setting the renderer for a column. This provider takes the value of the column on a row and chooses what to present for this value. Using this approach it is easier to have an editor for the actual backing data instead of the presentation of it. Fixes #8656 Resolves #9588 | ||||
* | Allow grid columns to optionally shrink to be narrower than contents | Artur | 2017-05-30 | 1 | -1/+5 |
| | | | Fixes #8548 | ||||
* | Add shorthand for adding a column with ComponentRenderer | Pekka Hyvönen | 2017-05-19 | 1 | -2/+2 |
| | |||||
* | Move tree-basic.png to the correct folder (#9363) | Aleksi Hietanen | 2017-05-18 | 1 | -0/+0 |
| | |||||
* | Clarify TreeData and TreeDataProvider javadocs, improve documentation (#9349) | Aleksi Hietanen | 2017-05-18 | 1 | -12/+3 |
| | |||||
* | Reflect latest Tree API and styling changes to the documentation | Ilia Motornyi | 2017-05-17 | 1 | -41/+28 |
| | |||||
* | Refactor common methods in in-memory data providers (#9308) | Aleksi Hietanen | 2017-05-16 | 2 | -22/+22 |
| | | | | | | * Refactor common methods of InMemoryHierarchicalDataProvider and ListDataProvider to a single interface * Rename HierarchyData and InMemoryHierarchicalDataProvider, introduce HasHierarchicalDataProvider * Additionally adds a helper method for recursive constructing TreeData with a child item provider. | ||||
* | Update example to Vaadin 8 (#9260) | dunand | 2017-05-08 | 1 | -7/+5 |
| | | | | | Replaced Result<String> with ValidationResult. Replaced variable input by value. Removed first phrase after example since it does not make sense anymore. | ||||
* | Documentation: fix wrong method name | dunand | 2017-05-04 | 1 | -1/+1 |
| | |||||
* | Tree documentation | Ilia Motornyi | 2017-05-04 | 10 | -8/+221 |
| | |||||
* | Fix three typos in the documentation (#9230) | Ilia Motornyi | 2017-05-04 | 1 | -1/+1 |
| | |||||
* | Add documentation for Composite | Henri Sara | 2017-04-27 | 1 | -13/+26 |
| | |||||
* | Grid drag and drop documentation (#9055) | Adam Wagner | 2017-04-13 | 1 | -0/+6 |
| | |||||
* | Correct TreeGrid documentation for expand and collapse | Aleksi Hietanen | 2017-04-10 | 1 | -1/+1 |
| | |||||
* | Add server-side expand and collapse to TreeGrid (#9021) | Aleksi Hietanen | 2017-04-06 | 1 | -1/+21 |
| | | | | | | | | | | | | | | | | * Add server-side expand and collapse to TreeGrid * Add javadocs * Fix variable naming in TreeGridHugeTreeTest * Fix review comments * Merge remote-tracking branch 'github/master' into 8759-server-expand * Clear pending expands when all data is dropped * Add documentation | ||||
* | TreeGrid keyboard navigation | Ilia Motornyi | 2017-04-05 | 1 | -1/+10 |
| | | | Fixes #8758 | ||||
* | Add notification of pre-release renderers to grid documentation | Aleksi Hietanen | 2017-04-04 | 1 | -31/+34 |
| | |||||
* | Fix method reference syntax in Grid documentation (#8978) | Samuel DALICHAMPT | 2017-03-30 | 1 | -4/+4 |
| | |||||
* | Implement LocalDateRenderer and LocalDateTimeRenderer (#8955) | Aleksi Hietanen | 2017-03-30 | 1 | -10/+56 |
| | | | Closes #8377 | ||||
* | Add Grid.setRowHeight() (#8935) | Henri Sara | 2017-03-29 | 1 | -1/+5 |
| | | | Fixes #8667 | ||||
* | Fix ComboBox item select method in example (#8964) | hlxnd | 2017-03-28 | 1 | -1/+1 |
| | |||||
* | Add feature to disable collapsing items in TreeGrid (#8879) | Teemu Suo-Anttila | 2017-03-23 | 1 | -0/+16 |
| | | | Fixes #8846 |