| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
|
|
|
| |
Failing to do this might cause constructors and listeners in a Polymer
element too be called too early in browsers which need the V1 polyfill.
|
| |
|
|
|
|
|
|
| |
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"
|
|
|
|
| |
Otherwise, the initial row height state update partly negates
an earlier optimization for unnecessary column width calculation.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
A composite is included in the server side hierarchy and in the connector
hierarchy on the client side but does not have its own widget or DOM.
To ensure that captions etc are renderer correctly for the root contents,
the client side connector returns both the widget and state for the content
connector.
Server side API related to width and height are automatically forwarded to
the root component to enable easy use of the composite inside different
layout configurations.
Other server side API inherited from AbstractComponent is unwanted, should be
optional and therefore throw an exception by default.
Resolves #2458
|
|
|
|
| |
* Indicate when multiple rows are dragged (#8398)
|
|
|
| |
Closes #8700
|
|
|
| |
Resolves #8932
|
|
|
|
|
| |
Generate drop target style names on every dragenter to make sure they match the primary style name.
Fixes #9058
|
|
|
| |
Fixes #1149
|
|
|
| |
Fixes #8901
|
|
|
|
|
| |
(#9075)
This is what the javadoc promises and what DependencyLoader relies on
|
| |
|
| |
|
| |
|
|
|
|
| |
Fixes #8401
|
|
|
|
| |
Fixes #8931
|
|
|
|
| |
Fixes #8400
|
|
|
|
| |
Fixes #8397
|
|
|
|
|
|
| |
It is possible to customize the drag data for each row. (#8706)
Fixes #8396
|
|
|
| |
Fixes #9050
|
|
|
|
|
|
| |
* Make Button component draggable (#9037)
* Add own state to button drag source
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* 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
|
|
|
| |
Fixes #8758
|
|
|
| |
Fixes #9005
|
|
|
| |
Fixes #8945
|
|
|
| |
Fixes #8943
|
|
|
| |
Closes #8377
|
|
|
| |
Fixes #8667
|
|
|
| |
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
|
|
|
|
|
|
|
|
| |
* Use textContent instead of innerText in TextRenderer
This improves standards compliance and reduces unnecessary layouting.
Optimization suggested by Oskar Hýbl, Cleverbee solutions
|
|
|
| |
Fixes #8790
|
|
|
|
|
|
|
|
| |
* Add dropEffect parameter to DragEndEvent (#8895)
* Remove drop effect from drop event (#8895)
* Make sure that drop effect is not null
|
|
|
| |
Fixes #8590
|
|
|
|
|
| |
This patch also enables an old test that was pending #8128
Fixes vaadin/framework8-issues#556
|
|
|
| |
Fixes #8846
|
|
|
|
|
|
| |
* Remove API for setting arbitrary drag data
* Store the drag source component in the UI
Fixes #8893
|
|
|
|
|
| |
Allows Flash embed to expand if percentage dimensions given
Fixes #4035
|
|
|
|
|
|
| |
* Optimize grid by avoiding redundant row refreshes
* Delay more calls to refreshBody()
|
|
|
| |
Closes #8795
|
|
|
|
|
|
|
|
| |
* Add missing since tags for 8.1.0.alpha1
* Update @since for DataCommunicatorClientRpc
* Update @since for DataCommunicator
|
| |
|
|
|
| |
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
|