use of com.sun.web.ui.model.CCActionTableModelInterface in project OpenAM by OpenRock.
the class AMViewBeanBase method hideTableSelectionIcons.
/**
* Hides the selection checkboxes in table.
*
* @param tableName Name of table.
*/
public void hideTableSelectionIcons(String tableName) {
CCActionTable table = (CCActionTable) getChild(tableName);
CCActionTableModelInterface model = table.getModel();
model.setSelectionType(CCActionTableModelInterface.NONE);
}
Aggregations