Hello everybody
i'm just faciing a really strange behaviour.
I'm using ListGrids and TreeGrids in my SmartGWT App.
this way i register a click listener:
grid.addClickHandler(new ClickHandler() {
public void onClick(ClickEvent event) {
SC.say("hello");
}
});
the thing is, the click event does not happen any more, yesterday everything was working fine, the single click event was there and the method onClick executed
but however it does not work any more, i actually checked everything i've changed so far...
the thing is, if i click on the header of tree/list grid, the click event is there, or if i click on the border of the grid, or on any existing items, but if there are no items, and i click in the moddle of the component, no click event is fired
spent too much time solving too foolish issue :-(
please help
i'm just faciing a really strange behaviour.
I'm using ListGrids and TreeGrids in my SmartGWT App.
this way i register a click listener:
grid.addClickHandler(new ClickHandler() {
public void onClick(ClickEvent event) {
SC.say("hello");
}
});
the thing is, the click event does not happen any more, yesterday everything was working fine, the single click event was there and the method onClick executed
but however it does not work any more, i actually checked everything i've changed so far...
the thing is, if i click on the header of tree/list grid, the click event is there, or if i click on the border of the grid, or on any existing items, but if there are no items, and i click in the moddle of the component, no click event is fired
spent too much time solving too foolish issue :-(
please help
Comment