SANTINI, Rafael schrieb: > Hi, > > Why when onclick="this.disabled=true; return true" in a commandButton > the action is not executed? I'm trying disable the button after a click.
Disabled controls are never sent to the webserver on submit: http://www.w3.org/TR/html401/interact/forms.html#h-17.12 Use "readonly" instead. -- -- Emails in "mixed" posting style will be ignored -- (http://en.wikipedia.org/wiki/Posting_style)

