Hi Joaquin,
you can try to use following approach as workaround:
1) Create in node value attribute with type boolean (valid)
2) in wdDoModifyView add code:
final IWDTable table = (IWDTable)view.getElement("tableName"); final IWDTableColumn[] columns = table.getColumns(); for (int i = 0; i < columns.length; i++) { final IWDTableColumn column = columns[ i ]; ((IWDUIElement)column.getTableCellEditor()).bindEnabled("node.valid"); }
3) Set node.valid to appropriate value.
regards Maxim R.
Add a comment