I have a similar situation with expandable CellTable rows, inspired from this showcase:
http://showcase3.jlabanca-testing.appspot.com/#!CwCustomDataGrid
Lets say I have a CellTable displaying instances of class Book on each row.
When I click one row (using SelectionModel), it gets expanded, where the Authors of the Book is displayed
in a custom UiBinder widget.
I would like be able to click on a row for an Author to show some more information.
But the selectionModel's changehandler gets fired. If I remove the selectionModel and just use a
ClickableTextCell to expand the row, the events in the Authors custom widgets isnt fired (@UiHandler("infoButton"))
Any suggestions how I can acheive this?
Regards