summaryrefslogtreecommitdiffstats
path: root/server/src
Commit message (Collapse)AuthorAgeFilesLines
* Add since tags for 8.0.68.0.6Teemu Suo-Anttila2017-05-082-11/+12
|
* Fix data not being sent again when adding DataGenerators (#8947)Teemu Suo-Anttila2017-05-081-0/+3
| | | | | | * Fix data not being sent again when adding DataGenerators * Fix header component detaching, revert early header cleanup
* Fix problem when reading a nested Design based on a GridLayout (#9092)Artur2017-05-083-6/+62
| | | | | | | | The parent Design must leave child handling to the nested design, when there are no children defined in the parent Design. This fixes a problem with com.vaadin.ui.GridLayout$OutOfBoundsException when the reading operation of the parent design tries to set number of rows according to its empty content.
* Always send a push identifier on UI initializationAleksi Hietanen2017-05-081-3/+1
|
* Use separate identifier for push connectionsAleksi Hietanen2017-05-083-3/+50
| | | | Closes #8700
* Check for NullPointer to remove exception spamKnoobie2017-05-081-0/+12
|
* Use setCaption Javadocs inherited from Component (#9066)Leif Åstrand2017-05-082-16/+0
| | | | | | | Component.setCaption has thorough Javadocs that are shadowed by a very brief snippet in AbstractComponent and an erroneous description in Panel. By removing those snippets, component classes will instead inherit a much more useful description of the method.
* Make bindInstanceFields not bind fields already bound using functions (#8998)Artur2017-05-082-3/+44
| | | | Fixes #8858
* Remove future version from `@since`elmot2017-05-081-11/+11
|
* Fix infinite loop in data communication (#8927)Aleksi Hietanen2017-05-082-23/+141
| | | | | | | | | | * Fix infinite loop in data communication * Switch to less aggressive reset when data communication is out of sync * Remove triggering of reset if reset is already being performed * Avoid redundant collection of streams in DataCommunicator
* Fix some javadoc errors (#8873)Ahmed Ashour2017-05-087-24/+23
|
* Fix bug column and row expand ratio are not persisted (#9028)Ilia Motornyi2017-04-062-14/+31
| | | Fixes #9009
* Add missing @since for 8.0.5 and 7.7.88.0.5Pekka Hyvönen2017-03-301-3/+5
|
* Include charset in text/html responses (#8777)Artur2017-03-304-6/+11
| | | | Fixes #8775
* Make CustomField iterator() comply with contractArtur Signell2017-03-302-23/+72
| | | | Fixes #8957
* Fix data not being sent again when adding DataGenerators (#8947)Teemu Suo-Anttila2017-03-302-0/+4
| | | | | | * Fix data not being sent again when adding DataGenerators * Fix header component detaching, revert early header cleanup
* Fix Binder documentation on ValidationException (#8949)Pekka Hyvönen2017-03-301-0/+30
|
* Add `closable` style to Error Notifications (#8903)Jouni Koivuviita2017-03-301-0/+7
| | | | | | Add an additional stylename `critical-error` that styles the notification like the Error-type, but without the close button. Fixes #8296
* Improved Binder#hasChanges JavaDoc (#8912)Matti Tahvonen2017-03-301-8/+12
| | | | JavaDoc now more explicitly states that hasChanges is not designed to work with setBean.
* Fix infinite loop in data communication (#8951)Aleksi Hietanen2017-03-271-4/+11
| | | Fixes #8479 for Vaadin Framework 8.0
* Set column captions when reading grid from a design file (#8770)8.0.4Artur2017-03-222-4/+14
| | | Fixes #8752
* Add more 8.0.3 since tagsHenri Sara2017-03-224-14/+25
|
* Support data-location attribute in CustomLayout (#8866)Henri Sara2017-03-221-0/+5
| | | Fixes #8416
* Add @since 8.0.3 tags8.0.3elmot2017-03-166-0/+26
|
* Handle unknown connectors consistently and quietly as described in #8111 (#8741)Artur2017-03-162-6/+63
| | | | Fixes #8629
* Correctly write margin info for FormLayout into design files (#8804)Artur2017-03-164-26/+85
| | | Fixes #8800
* Allow changing renderers after column creation (#8841)Teemu Suo-Anttila2017-03-161-1/+44
| | | | Closes #8250
* Correct license locationAhmed Ashour2017-03-163-20/+3
|
* Make test for EditorSaveEvent.bean field Ilia Motornyi2017-03-162-6/+25
| | | * Fixes #8810, #8658
* Read/write Grid item type to declarative and create columns correctly (#8769)Artur2017-03-163-18/+438
| | | Fixes #8467
* Update frozen column count when a frozen column is removed (#8788)Artur2017-03-162-2/+45
| | | | * Update frozen column count when a frozen column is removed
* Add the bean to grid editor eventsGiovanni Lovato2017-03-163-4/+32
| | | Fixes #8658
* Update JavaDoc for @DesignRoot. (#8805)anssit2017-03-161-4/+5
| | | Emphasise that both location and filename for the design file can be specified in the value parameter.
* RichTextField unnecessarily overwrites clear method (#8802)Ilia Motornyi2017-03-161-7/+0
| | | | | | * RichTextField unnecessarily overwrites clear method Fixes #8801
* Update Atmosphere to resolve problems in servlets with multiple mappings (#8785)Artur2017-03-161-1/+1
| | | Fixes #8734
* Add @since 8.0.2 for Grid.removeAllColumns() (#8789)Ilia Motornyi2017-03-161-0/+2
|
* Correctly detach components in merged cells (#8773)Artur2017-03-162-0/+28
| | | | | | * Correctly detach components in merged cells This was already once fixed in 7.7 in #8142
* Include components in joined cells when finding child components (#8772)Artur2017-03-165-16/+134
| | | Fixes #8722
* Remove extra empty javadocs before package declaration (#8776)Ahmed Ashour2017-03-169-27/+0
|
* Update column caption when a text is set in the default header rowArtur2017-03-163-0/+40
| | | Fixes #8751
* Add Column.getValueProvider to Grid (#8732)Artur2017-03-162-4/+63
| | | | | | * Add Column.getValueProvider to Grid Fixes #8680
* Allow powerful Navigator subclassing (#8663)Giovanni Lovato2017-03-161-4/+17
| | | | | | | | * Allow powerful Navigator subclassing `protected` methods in `Navigator` permit to create new `Navigator`s to add new capabilities to Vaadin, but `Navigator` fields are still `private` and this limit, for example, the overriding of `Navigator.init`. This PR makes `private` the `Navigator` fields. * Add documentation blocks to protected fields
* Add support for rendering HTML in ButtonRenderer (#8606)Artur2017-03-161-0/+24
|
* Translate "context://" to the context root of the web appArtur2017-03-165-0/+179
| | | Fixes #2523
* Add missing since, remove unused commandTeemu Suo-Anttila2017-03-071-1/+1
|
* Picked all changes from 7.7Teemu Suo-Anttila2017-03-074-41/+1068
| | | | | Synchronises parts of compatibility package code to match 7.7 Picks suitable patches for 8 code as well
* Remove tracking of unregistered connectors (#8153)Aleksi Hietanen2017-03-077-126/+56
|
* Add missing Grid.removeAllColumns (#8750)Artur2017-03-072-0/+23
| | | Fixes #8704
* Use try-with-resources (#8757)Ahmed Ashour2017-03-073-27/+28
| | | To ensure the resource is automatically closed
* Remove unnecessary override and correct javadoc typo (#8716)Peter Lehto2017-03-071-9/+1
| | | Fixes #8715