Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Ensure Composite's contents gets re-measured on resize. (#12154) | Anna Koskinen | 2020-12-01 | 2 | -0/+87 |
| | | | Fixes: #12153 | ||||
* | Remove copyright headers from test code (#10770) | Teemu Suo-Anttila | 2018-03-28 | 2 | -30/+0 |
| | |||||
* | Update copyright year (#10761) | Ilia Motornyi | 2018-03-27 | 2 | -2/+2 |
| | |||||
* | Use static import of Assert in tests (#10126) | Ahmed Ashour | 2017-10-03 | 1 | -6/+7 |
| | | | | Also removes dependency on junit.framework.TestCase . | ||||
* | Omit duplicate caption for a Panel in a Composite | Henri Sara | 2017-08-30 | 1 | -0/+30 |
| | | | | | | Correctly render components that handle their own captions inside a Composite. Fixes #9848 | ||||
* | Composite component (#8952) | Artur | 2017-04-18 | 1 | -0/+55 |
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 |