Hi,
TableListBoxModel has two function for getting the mouse click events one for click and second one for doubleClick.
virtual void cellClicked (int rowNumber, int columnId, const MouseEvent& e);
virtual void cellDoubleClicked (int rowNumber, int columnId, const MouseEvent& e);
When I make a single click on any cell in the table then in that case i get a call in the cellClicked method. But when I make a double click on any cell then also I get call in the cellClicked method instead of cellDoubleClicked.
Also in both the methods when I am counting the number of click I’m getting 1 for both single click or for double click.
I am not getting the exact way to handle this. Any guideline for achieving this will be greatly appreciated and helpful to me!
Thanks,
Vivek
