summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* Fix some generics warnings in EclipseAhmed Ashour2017-03-1614-26/+30
|
* Update column caption when a text is set in the default header rowArtur2017-03-163-0/+40
| | | Fixes #8751
* Fix client-side error when Upload in TabSheet and Push Johannes Tuikkala2017-03-163-4/+160
| | | Fixes #8728
* Always load the deferred connector bundle (#8713)Leif Åstrand2017-03-1612-18/+383
| | | | | | | | | | endDependencyLoading that was used for starting to load the deferred connector bundle is only called during regular application init if the theme wasn't yet loaded when the initial UIDL request finished. With this patch, the bundle is instead set to be loaded after the initial UIDL message has been completely processed. Fixes #4763
* 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-166-13/+81
|
* Support Vaadin custom protocols in Vaadin-Refresh redirects (#8597)Artur2017-03-165-1/+95
| | | | A login page you want to redirect to is typically in the webapp root, which you can now refer to as "Vaadin-Refresh: context://login.html"
* Translate "context://" to the context root of the web appArtur2017-03-1613-3/+299
| | | Fixes #2523
* Make Eclipse add vaadin-icons source folder (#8531)Henri Sara2017-03-161-1/+41
|
* Revert multi select using state change8.0.2Teemu Suo-Anttila2017-03-073-14/+14
|
* Restore column based width for compatibility selectsTeemu Suo-Anttila2017-03-0710-10/+234
|
* Restore type attributes to compatibility UIDLTeemu Suo-Anttila2017-03-074-1/+12
|
* Revert html content through shared state for OptionGroupTeemu Suo-Anttila2017-03-075-21/+23
|
* Add missing since, remove unused commandTeemu Suo-Anttila2017-03-072-18/+1
|
* Revert immediate tests, deprecate HasUserSelectionAllowedTeemu Suo-Anttila2017-03-072-36/+1
|
* Picked all changes from 7.7Teemu Suo-Anttila2017-03-0731-124/+1530
| | | | | Synchronises parts of compatibility package code to match 7.7 Picks suitable patches for 8 code as well
* Synchronize code between V7 and compatibility packageTeemu Suo-Anttila2017-03-0792-582/+1082
|
* Revert diamond operator changesTeemu Suo-Anttila2017-03-0771-423/+436
|
* Eliminate more full classnamesTeemu Suo-Anttila2017-03-074-35/+29
|
* Remove unnecessary full classname referencesTeemu Suo-Anttila2017-03-0760-906/+308
|
* Remove tracking of unregistered connectors (#8153)Aleksi Hietanen2017-03-0713-294/+69
|
* Update getting-started-idea.asciidoc (#8756)Jens Jansson2017-03-071-1/+1
|
* Add missing Grid.removeAllColumns (#8750)Artur2017-03-072-0/+23
| | | Fixes #8704
* Add link to pro tools migration docs (#8742)Guille2017-03-071-0/+10
|
* Use try-with-resources (#8757)Ahmed Ashour2017-03-075-42/+43
| | | To ensure the resource is automatically closed
* Fix warning: '_' should not be used as an identifier (#8755)Ahmed Ashour2017-03-071-19/+19
|
* Fix exception when no columns are shown (#8733)Artur2017-03-075-24/+77
| | | | | | * Fix exception when no columns are shown or all columns are frozen Fixes #8329
* Some cleanup to themes module (#8526)Ilia Motornyi2017-03-072-1/+2
|
* Fix tutorial (use parameterized Grid) (#8738)Alejandro2017-03-071-2/+2
| | | | | | | | | | | | * Updated tutorial: Use Grid::setColumns * Updated tutorial: use Binder instead of BeanBinder * Fixed tutorial (use parameterized Grid) * Fixed tutorial (use parameterized Grid) * Merge branch 'master' of https://github.com/alejandro-du/framework
* Fix documentation links (#8726)Artur2017-03-072-10/+10
| | | | * Fix documentation links
* Remove unnecessary override and correct javadoc typo (#8716)Peter Lehto2017-03-071-9/+1
| | | Fixes #8715
* Fix js state partial updates (#8695)Leif Åstrand2017-03-074-6/+135
| | | | | | | | | | | | * Fix partial state change handling of JavaScript components In ace0e324b69753431dcde9949eaa9b0e3e648db9 (Use diffstate for JS connectors) partial state change handling for JavaScript components was introduced, but the setNativeState method in JavaScriptConnectorHelper was not adjusted. By removing the cleanup code from the updateNativeState method it can be ensured that the non-changed properties are still present on the state object. * Add test for preserving untouched JS state fields
* Minor fix for javadocs (#8710)Ilia Motornyi2017-03-071-3/+3
|
* Easy DevelopmentServerLauncher run with maven (#8677)Ilia Motornyi2017-03-072-23/+53
| | | | Add Maven target for running or debugging the development server and instructions for IDEA.
* Remove mention of removed API (#8701)Guille2017-03-071-3/+0
| | | Deprecated setColumns was removed in fd3617b
* Updated tutorial: Use Grid::setColumns and Binder (#8698)Alejandro2017-03-071-21/+18
| | | | | | * Updated tutorial: Use Grid::setColumns * Updated tutorial: use Binder instead of BeanBinder
* Fix some issues with Binder serialization (#8660)8.0.1Ilia Motornyi2017-02-278-12/+44
| | | | Partial fix for #8640
* Add snapshot profile (#8672)Henri Sara2017-02-271-0/+63
|
* Add update checker (#8654)Henri Sara2017-02-272-0/+185
|
* Fix NPE sorting columns with null values (#8610)Filippo2017-02-272-1/+50
| | | | | | | | | | | | | | * Fix NPE sorting columns with null values Sorting a column in Grid throws a NullPointerException if there are null values and we are using the default TextRenderer * Test for #8610 * Update Grid.java * Update GridNullValueSortTest.java * Update GridNullValueSortTest.java
* Migrate v7 Grid tests. 7th round. (#8452)Denis2017-02-2721-398/+268
| | | | | | | | | | | | | | | | * Migrate v7 Grid tests. 7th round. Fixes #8419 * Fix test failures * Minor improvements * Merge remote-tracking branch 'github/master' into 8436-grid-test-migration * Merge remote-tracking branch 'github/master' into 8436-grid-test-migration * Update screenshot reference
* Make it possible to use an extended ComboBox in declarative files (#8651)Artur2017-02-273-2/+25
|
* Pick changes from 7.7.7 (#8577)Teemu Suo-Anttila2017-02-2741-95/+1116
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Fix java packaging order (#106) Closes vaadin/archetypes#113 * Use proper UTF-8 encoding for Content-Disposition filenames (#19527) (#6607) * Enable changing the backing bean for BeanItem (#4302) (#77) When storing a bean to the database, you typically get a new and updated bean instance back. By allowing to change the bean instance, we make it possible to just update the single BeanItem instance which can be used in many places. * Make AtmospherePushConnection methods public (#7973) There is no sensible way to use a custom version of APC, so protected access does not help in any way to access the underlying resource and/or connected UI. * Use correct indexes in multiselect checkboxes after removing rows (#8072) Fixes #8011 * Fix removal of hidden Grid columns (#8071) Fixes #8018 * Call error handler for exceptions in UI.init() (#8055) Fixes #4995 * Render font icon correctly on the 'more' menu item (#8126) * Render font icon correctly on the 'more' menu item Fixes #8125 * Reopen Grid details on attach, fixes #8015 (#8074) Fixes #8015 * Fix broken Grid tests after picking changes from 7.7.7 Removed duplicate setDetailsVisible calls from onDetach * Correctly detach components in merged cells when a static row is removed (#8142) Fixes #8140
* Migrate v7 Grid tests. Next round. (#8435)Denis2017-02-2727-888/+865
| | | | | | | | | | | | | | * Migrate v7 Grid tests. Next round. Fixes #8419 * Migrate v7 Grid tests. Next round. Fixes #8419 * Merge remote-tracking branch 'github/master' into 8419-grid-tests * Remove RunLocally annotation from GridHeightTest
* Load declarative classes using thread context class loader (#8532)Artur2017-02-272-3/+6
| | | | | | * Load declarative classes using thread context class loader Fixes #8528
* Fix grid column sort order documentation (#8650)Aleksi Hietanen2017-02-271-10/+6
| | | | * Fix grid column sort order documentation
* Mention VaadinServiceInitListener and JS state diff in release notes (#8607)Leif Åstrand2017-02-271-1/+2
| | | | * Mention VaadinServiceInitListener and JS state diff in release notes
* Remove class names from documentation headers (#8642)Artur2017-02-2731-31/+31
| | | | * Remove class names from documentation headers
* Fix null caption for NativeSelect and ComboBox (#8633)Pekka Hyvönen2017-02-274-6/+99
| | | | | | | | | * Fix null caption for NativeSelect and ComboBox Unified the null caption converting to empty string, as it was with other selects supporting item caption generator. Fixes #8630