CodeCoupler UI Breaking Changes in 2.x (cc-ui)
2.4.0
From 2.4 the property layout
used to start an application and the application instance property
layout
is deprecated. The layout engine is now also a widget. You can now start an app and use the
new "shortcut" to initialize any widget you want. To initialize the layout engine like with the
property layout
you can change your code as follows:
- Before
1 2 3 4 5 |
|
- After
1 2 3 4 5 6 7 8 9 |
|
- Better
To access the layout engine like before over the layout
application instance property you can set
an id:
1 2 3 4 5 6 7 8 9 10 |
|
Now you can access the layout engine with:
1 2 3 4 |
|
2.4.13
In 2.4.13 the property transport.include
in the DataSource Mixin loopback
was renamed to include
.