cancel
Showing results for 
Search instead for 
Did you mean: 

dynamic layout

Former Member
0 Kudos

How do you dynamically add layout to a group/transparent container. Set it to something like Gridlayout with col values etc.

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

IWDUIElementContainer.createLayout(<layout class>)

IWDUIElement.createLayoutData(<layout_data_class>)

Armin

Former Member
0 Kudos

Hi Deepak,

U can create UI elements dynamically.For designing layout dynamically use the dynamic layout manipulation correctly, you must understand the structure of a view:

In a view, a number of UI elements is laid out in relation to one another. This is done in so-called containers. To describe it, a layout is selected for every container: FlowLayout, MatrixLayout, or RowLayout exist (see reference documentation, chapter Layout).

Every UI element has layout data, in accordance with the embedding container. This layout data contains the description, at which position in the layout of the container an embedded UI element has its place.

Hope this helps u,

Regards,

Nagarajan.