Reputation: 1580
I need to place a text that has listener on it inside of cell of celltable. I also want to render a window after it was clicked. I am somehow failing to achieve this. Please note that I am new to gwt.
Upvotes: 0
Views: 68
Reputation: 10789
You can achieve this by inserting ClickableTextCell in table. Clicking on this table triggers ValueUpdater.update(value) method. Inside update you can do what you want.
Upvotes: 0