use of org.jmesa.view.editor.GroupCellEditor in project OpenClinica by OpenClinica.
the class EventStatusView 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));
}
}
use of org.jmesa.view.editor.GroupCellEditor in project OpenClinica by OpenClinica.
the class StudyStatisticsView 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));
}
}
use of org.jmesa.view.editor.GroupCellEditor in project OpenClinica by OpenClinica.
the class StatisticsView 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));
}
}
use of org.jmesa.view.editor.GroupCellEditor 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