public IBasicTableModel getModel() {
return new IBasicTableModel() {
public int getRowCount() {
System.out.println("called many times....");
return getServiceLayer().countTotalCategoryRow(getKeyword());
}
}
when i tried this and printout on console, it showed this method getRowCount() is called multiple times . Is this normal in tapestry 4?