Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    clickhandler on disabled form?

    (smartgwt pro 13)

    If i add a clickhandler to a form, it stops being called if the form is disabled. The docs do not mention this effect. Is there some way for a click handler to receive events on a disabled form?

    #2
    If you set readOnlyDisplay:"disabled" on your form, and call setCanEdit(false) instead of setDisabled(true), that will look like a disabled form, but still be interactive in the case you're interested in, and others.

    Comment

    Working...
    X