Francis De Brabandere wrote:
doing setEnabled(false) on a AjaxEditableMultiLineLabel does not disable the
editing feature

this can be fixed by overriding onEdit():

            @Override
            protected void onEdit(AjaxRequestTarget target) {
                if(isEnabled()){
                    super.onEdit(target);
                }
            }

but shouldn't this be changed in the AjaxEditableMultiLineLabel source?

ps: this might be needed on other ajax edit lables too

It is. This should now be fixed in trunk.

Regards,

Al

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to