Friends,
I need add checkbox "select rows" in my customized table:
The class thatI'mmovingisas follows:
@Override
public ComponentConfig buildComponentConfig(ComponentParams componentParams)
throws WTException {
ComponentConfigFactory factory = getComponentConfigFactory();
TableConfig table = factory.newTableConfig();
table.setLabel("Lista dos Fornecedores");
table.setView("/../../netmarkets/jsp/t3827/tableFornecedor.jsp");
table.addComponent(factory.newColumnConfig("number", true));
table.addComponent(factory.newColumnConfig("name", true));
table.setMenubarName ("forntablemenubar");
return table;
Can you help me?
Felipe Oliveira.