I can create custom rows using celltablebuilder. When you click on a specific anchor cell, I can create additional substrings for this row. This subset has buttons, when I click on the button, I do some action. I can add buttons with a click manipulator to the dungeon, but when I click on a button, nothing happens, the click manipulator does not shoot.
Someone can help.
protected void buildRowImpl(GridDTO rowValue, int absRowIndex ) { buildRows(rowValue, absRowIndex, true); if (showingFriends.contains(rowValue.getComponentId())) { buildAdditonalRows( absRowIndex, gridDTO); } } private void buildAdditonalRows(int index, GridDTO rowValue, ){ TableRowBuilder row = startRow(); td = row.startTD(); if(rowValue.getXpath() != null){
source share