Pregunta

I have a flextable, and in that table I have a column where each row has a button to remove that row. How can I get the index of that row so that I can remove it. I only need to get a index.

¿Fue útil?

Solución

A solution: 

FlexTable myTable = new FlexTable();
myTable.addClickHandler(new ClickHandler() {
public void onClick(ClickEvent event) {
    Cell cell = myTable.getCellForEvent(event);
    int receiverRowIndex = cell.getRowIndex();
}
});
Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top