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

37 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 answers

0
Zied Hamdi 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