| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
| |
Fixes #8316
|
|
|
| |
Fixes #9488
|
|
|
| |
Fixes #9079
|
|
|
|
|
|
| |
Currently the reset method resets the lastFilter as well and then the logic thinks items don’t need to be refreshed when popup is reopened.
Fixes #9027
Fixes #7790
|
|
|
|
|
| |
Fixes the remaining issue from #3944 for Firefox so that a click on the checkbox label calls the focus listener.
Fixes #9290
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
| |
Refactors AbstractGridKeyEvent, AbstractGridMouseEvent and their
descendants to follow the pattern used in other GWT DomEvents.
Fixes #7633
|
|
|
|
|
| |
This fixes problems with profiling the initial paint:
"SEVERE: Got end event for leftoversDownload.runAsync but is currently in null"
|
|
|
|
| |
Closes #8700
|
|
|
|
| |
Fixes #8901
|
|
|
|
|
|
| |
(#9075)
This is what the javadoc promises and what DependencyLoader relies on
|
| |
|
| |
|
|
|
|
| |
Fixes #9005
|
|
|
|
| |
Fixes #8945
|
|
|
|
| |
Fixes #8943
|
| |
|
|
|
| |
Fixes #1149
|
|
|
|
| |
Fixes #8702
|
|
|
|
|
|
| |
* Fix data not being sent again when adding DataGenerators
* Fix header component detaching, revert early header cleanup
|
|
|
|
| |
Fixes #8840
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* Use computed style for Escalator size calculations
The old method of using getBoundingClientRect does not work as expected
if a transform has been applied to the element or one of its parents.
For instance PopupView animates itself using a scale(0) -> scale(1)
animation. When scale(0) is active, getBoundingClientRect will return 0
for all sizes while computed style ignores the transform and returns the
expected value.
Fixes #8793
|
|
|
|
|
| |
This patch also enables an old test that was pending #8128
Fixes vaadin/framework8-issues#556
|
|
|
|
|
| |
Allows Flash embed to expand if percentage dimensions given
Fixes #4035
|
|
|
| |
IE11 in compatibility mode is actually not too old. It's just not recognized as IE11 if you leave the Trident version out of the equation. Checking the Trident version and using it to determine the actual IE version instead of trusting the possibly emulated MSIE version string.
|
|
|
|
|
|
| |
* Optimize grid by avoiding redundant row refreshes
* Delay more calls to refreshBody()
|
|
|
| |
Fixes #8416
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* Rename getMaxEscalatorRowCapacity to describe what it does
* Always calculate Escalator max row count the same way
This changes Escalator to not take a horizontal scrollbar
into account when trying to determine "maximum visible rows". This will
add another row, compared to previous versions, when there is a horizontal
scrollbar. In reality, it would likely make sense to always add 10 more rows
to have some buffer above and below the visible area.
Fixes #8661
|
|
|
|
|
|
|
| |
Do not calculate column widths unnecessarily, especially for columns
with fixed width.
Fixes #8678
|
|
|
|
| |
Closes #8250
|
|
|
|
|
|
| |
* Fix removing rows from the middle of Escalator
Fixes #8825
|
| |
|
|
|
|
|
|
| |
* Fix detach of grid when it contains frozen columns
Fixes #8748
|
|
|
| |
Fixes #8778
|
| |
|
|
|
|
|
|
|
| |
Columns unregister themselves from the grid through removeColumn, also
when the whole grid is removed.
Fixes #8748
|
|
|
| |
Fixes #8728
|
|
|
|
|
|
|
|
|
|
| |
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
|
| |
|
|
|
|
| |
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"
|
|
|
| |
Fixes #2523
|
|
|
|
|
| |
Synchronises parts of compatibility package code to match 7.7
Picks suitable patches for 8 code as well
|
| |
|
|
|
|
|
|
| |
* Fix exception when no columns are shown or all columns are frozen
Fixes #8329
|
|
|
|
|
|
|
|
|
|
|
|
| |
* 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
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* 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
|