MrProper
MrProper

Reputation: 1580

How to place text with mouseClick listener inside of cell of table?

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

Answers (1)

mishadoff
mishadoff

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

Related Questions