How to add a ClickListener on each single cell in a grid using GWT?

75 Views Asked by At

How do I register a ClickListener on each single cell in a grid? I wanna make a timetable where the user can create appointments by clicking on a date.

1

There are 1 best solutions below

0
On

You can have a SimplePanel in each grid and add it a clickHandler with

addHandler()

as described here Adding ClickHandler to div which contains many other widget