Hi Isomorphic,
I'm pretty sure that for the code shown for "Change via object" and "Change via DynamicForm" in this testcase, only the 2nd case is good style or even allowed.
I also think that I read this somewhere in the docs, but can't seem to find where.
In this answer you say one is not allowed to change ListGridFields after passing them to a ListGrid via setFields().
Could you say yes/no to these actions:
Blama
I'm pretty sure that for the code shown for "Change via object" and "Change via DynamicForm" in this testcase, only the 2nd case is good style or even allowed.
I also think that I read this somewhere in the docs, but can't seem to find where.
In this answer you say one is not allowed to change ListGridFields after passing them to a ListGrid via setFields().
Could you say yes/no to these actions:
- DynamicForm:
- FormItem.setSomeProperty() after passing the FormItem to a DynamicForm.
- FormItem.setValue() after passing the FormItem to a DynamicForm.
- FormItem.getValue() after passing the FormItem to a DynamicForm.
- ListGrid
- ListGridField.setSomeProperty() after passing the ListGridField to a ListGrid.
- ListGridField.setValue() (e.g. in some ListGrid-Actionhandler) after passing the ListGridField to a ListGrid.
- ListGridField.getValue() (e.g. in some ListGrid-Actionhandler) after passing the ListGridField to a ListGrid.
Blama
Comment