To hide and show fields on Form you have to use the setVisible() method.
// To Show/Visible fields on Form
formContext.getControl("fieldSchemaName").setVisible(true);
// To Hide/Un-Visible fields on Form
formContext.getControl("fieldSchemaName").setVisible(false);
No comments:
Post a Comment