Hi,
Am newbie to SmartGWT framework. Currently in our project need of show / hide form item based on certain conditions. While changing the conditions, the code was supposed to show the form item as visible but it's not working here.
for(int i=0;i<dff.getFields().length;i++)
{
dff.getFields()[i].setVisible(true);
dff.redraw();
}
Note : dff is DynamicForm
Am newbie to SmartGWT framework. Currently in our project need of show / hide form item based on certain conditions. While changing the conditions, the code was supposed to show the form item as visible but it's not working here.
for(int i=0;i<dff.getFields().length;i++)
{
dff.getFields()[i].setVisible(true);
dff.redraw();
}
Note : dff is DynamicForm
Comment