use of org.jmesa.view.editor.CellEditor in project OpenClinica by OpenClinica.
the class StudySubjectStatusView method setCustomCellEditors.
/**
* Setting the group cell editor.
*/
private void setCustomCellEditors() {
List<Column> columns = getTable().getRow().getColumns();
for (Column column : columns) {
CellEditor decoratedCellEditor = column.getCellRenderer().getCellEditor();
column.getCellRenderer().setCellEditor(new GroupCellEditor(decoratedCellEditor));
}
}
Aggregations