Hi, in our design, there are 5 FormItems per row in a DynamicForm by the following implementation
But the FormItems will be clipped out when the window size changes.
I want the FormItems to auto adjust their place when the window size changes, for example, wrap to the next row.
Is there any way for DynamicForm to achieve this? Thanks in advance.
Code:
dynamicForm.setNumCols(5); dynamicForm.setWidth100(); dynamicForm.setColWidths(240, 240, 240, 240, 240); ... // construct formItems array here ... dynamicForm.setFields(formItems);
I want the FormItems to auto adjust their place when the window size changes, for example, wrap to the next row.
Is there any way for DynamicForm to achieve this? Thanks in advance.
Comment