I would like to allow my users to re-enable a disabled checkbox on click. I tried to attach an onClickHandler to my checkbox but since it's disabled, it doesn't see to catch that event:
checkbox.onClickHandler(new ClickHandler() {
public void onClick(ClickEvent clickEvent) {
// do something
}
});
Did I miss something? Or would I need to write my own checkbox that extends from CheckBox to do that?