[richfaces-issues] [JBoss JIRA] Assigned: (RF-1089) a4j:commandButton oncomplete attribute
Sergey Halipov (JIRA)
jira-events at lists.jboss.org
Wed Oct 10 10:23:08 EDT 2007
[ http://jira.jboss.com/jira/browse/RF-1089?page=all ]
Sergey Halipov reassigned RF-1089:
----------------------------------
Assignee: Ilya Shaikovsky (was: Sergey Halipov)
Fixed in trunk. Revision 3312.
> a4j:commandButton oncomplete attribute
> --------------------------------------
>
> Key: RF-1089
> URL: http://jira.jboss.com/jira/browse/RF-1089
> Project: RichFaces
> Issue Type: Bug
> Affects Versions: 3.1.2
> Environment: XP32, JBoss 4.2.1GA
> Reporter: First Last
> Assigned To: Ilya Shaikovsky
> Fix For: 3.2.0
>
>
> Using 3.1.2, the following sample does not re-enable the button upon completion of the action.
> <h:form id="form">
> <a4j:commandButton id="cbutton" action="director.rollCamera"
> onclick="this.disabled=true"
> oncomplete="this.disabled=false" />
> </h:form>
> Whereas the following sample is able to re-enable the button upon completion of the action. It seems the oncomplete attribute has problem obtaining a reference of the command button object when using the keyword, 'this' .
> <h:form id="form">
> <a4j:commandButton id="cbutton" action="director.rollCamera"
> onclick="this.disabled=true"
> oncomplete="document.getElementById('form:cbutton').disabled=false" />
> </h:form>
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
More information about the richfaces-issues
mailing list