use of noNamespace.WidgetT in project mdw-designer by CenturyLinkCloud.
the class AttributesTableContainer method setEditable.
public void setEditable(boolean editable) {
boolean lEditable = editable;
// need values to select
WidgetT valueWidget = getValueWidget(pageletTable);
if (valueWidget instanceof DropdownT) {
DropdownT dropdown = (DropdownT) valueWidget;
if (dropdown.getOPTIONList().isEmpty())
lEditable = false;
}
tableEditor.setEditable(lEditable);
}