summaryrefslogtreecommitdiffstats
path: root/documentation
Commit message (Collapse)AuthorAgeFilesLines
* Clarify widgetset documentation (#10984)Leif Åstrand2018-06-151-5/+5
|
* Update UsingRPCFromJavaScript.asciidoc (#10975)Leif Åstrand2018-06-121-2/+2
| | | The old syntax links to `.asciidoc` instead of `.html` on vaadin.com/docs.
* Update combobox docs to use setNewItemProvider (#10901)Anastasia Smirnova2018-05-081-4/+3
|
* Fix asciidocs headings H1elmot2018-05-0484-167/+84
|
* Fixed broken link in documentation (#10875)Matti Tahvonen2018-05-041-1/+1
| | | Fixes #10874
* Update Using RPC To Send Events To The ClientAnastasia Smirnova2018-05-031-2/+2
| | | | | Update the article to make it compile, if using right imports Addresses : https://github.com/vaadin/framework/issues/10439
* Removing obsolete link (#10857)Johannes Häyry2018-04-271-5/+0
|
* Updated to use non-deprecated API (#10855)Matti Tahvonen2018-04-271-1/+1
| | | | * Update layout-orderedlayout.asciidoc
* Updated link to vaadin.com downloads sectionMatti Tahvonen2018-04-251-1/+1
|
* Add MenuItem notices to BrowserWindowOpener documentation (#10820)Ilia Motornyi2018-04-203-4/+4
|
* Update example for Comparator in Grid (#10833)Anastasia Smirnova2018-04-201-3/+3
| | | Fixes #10337
* Documentation: Updated version example and added a mvn example snippet (#10827)Sami Ekblad2018-04-171-1/+11
|
* Remove reference to supportsParameters (#10798)Olli Tietäväinen2018-04-091-13/+1
|
* Add "Using debug ids in communication" to LoadTestingWithGatling.asciidoc ↵Johannes Tuikkala2018-04-091-2/+10
| | | | (#10794)
* Fix HtmlRenderer code example in documentation (#10790)8.4.0.alpha2Boppleton Industries2018-04-051-1/+1
|
* Small docs fix (#10749)Ilia Motornyi2018-04-031-3/+3
|
* Support starting downloads and opening URLs from a menu item (#10478)Artur2018-03-281-1/+1
|
* Add missing line break (#10757)Anastasia Smirnova2018-03-271-1/+2
|
* Updated versions in OSGi docs (#10756)Artur2018-03-261-7/+7
| | | | | * Updated versions Based on https://github.com/vaadin/framework/issues/10755, not tested
* Implement ReadOnlyHasValue helper (#10643)Ilia Motornyi2018-03-201-0/+12
|
* Remove under development notice from PushState based navigation (#10733)Teemu Suo-Anttila2018-03-201-1/+1
|
* fix reference to deprecated `FontAwesome.TIMES` (#10731)Ibanga Enoobong Ime2018-03-191-2/+2
|
* fix invalid formatting of maven goal (#10729)Matti Tahvonen2018-03-191-1/+1
|
* Update advanced-dragndrop.asciidoc (#10680)Anastasia Smirnova2018-03-071-3/+13
| | | | | | | | | | | | | | | * Update advanced-dragndrop.asciidoc Fixing example of Drag and drop code. Resolves https://github.com/vaadin/framework/issues/10512 * Update advanced-dragndrop.asciidoc Removed unnecessary spaces * Update advanced-dragndrop.asciidoc Removed unnecessary spaces
* Update components-grid.asciidocAnastasia Smirnova2018-03-061-1/+1
|
* Update datamodel-providers.asciidoc (#10664)Sebastian Köhler2018-02-281-2/+2
|
* Update doc - Added missing void keywordMatti Tahvonen2018-02-281-1/+1
|
* Update themes-responsive.asciidoc (#10460)dangllucas2018-02-071-3/+5
|
* Update themes-responsive.asciidocInvenius2018-02-011-3/+1
|
* Add a notice about partially outdated content (#10562)Jouni Koivuviita2018-01-301-0/+4
| | | Fixes #10385
* Fix Binding Data to Forms link (#10568)jmzc2018-01-301-1/+1
|
* Added mentions about groupId and version numbers (#10563)Sami Ekblad2018-01-291-0/+2
|
* Vaadin with a capital V (#10548)Jonni Nakari2018-01-191-2/+2
|
* Add css class to selected items in CheckboxGroup and RadiobuttonGroup (#10394)Marco Collovati2017-12-281-1/+2
| | | | | | Adds v-select-option-selected class to the selected group items in CheckboxGroup and RadiobuttonGroup Fixes #3387
* Fix typoDavid Steinkopff2017-12-031-2/+2
|
* Escape CDATA element (#10377)Olli Tietäväinen2017-11-291-1/+1
|
* Update bean validation article to use FW8 APIs (#10387)AMahdy AbdelAziz2017-11-291-6/+5
| | | | | Suggested by [Jean-Christophe Gueriaud](https://vaadin.com/forum/#!/thread/16876180). Closes #10386
* Update vaadin.version in embedding documentation (#10383)Olli Tietäväinen2017-11-281-2/+2
|
* Update datamodel-forms.asciidoc (#10350)jcgueriaud2017-11-221-9/+8
| | | This patch fixes the BinderValidationStatusHandler example in the documentation.
* Rename GridDragger to GridRowDragger (#10333)Pekka Hyvönen2017-11-171-8/+8
| | | 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/+58
| | | | This pathc also switches GridDragger to by default not allow drops on rows when the grid has been sorted.
* 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-151-2/+9
| | | | | | | | | | | | | | | | | * 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 link format (#10269)Henri Muurimaa2017-11-061-1/+1
|
* Fix typo (#10295)Mikko Inkinen2017-11-061-1/+1
|
* Fix bad grammar in declarative documentation (#10236)Pekka Hyvönen2017-10-231-4/+2
| | | | | | * Fix bad grammar in declarative documentation * Fix typos
* Typo in code (#10218)Oskar Bilén2017-10-201-1/+1
| | | Remove "java" from code example
* Fix typos (#10213)Ahmed Ashour2017-10-201-1/+1
| | | | | | * Fix typos * Fix
* Fix wrong method name in Grid docs (#10171)Pekka Hyvönen2017-10-111-1/+1
|
* Fix typos (#10124)Ahmed Ashour2017-10-0419-27/+27
|