upgrade to 3.3.3 - rich:dropDownMenu with 3 or more disabled actions does not work
----------------------------------------------------------------------------------
Key: RF-8592
URL:
https://jira.jboss.org/jira/browse/RF-8592
Project: RichFaces
Issue Type: Bug
Security Level: Public (Everyone can see)
Affects Versions: 3.3.3.Final
Reporter: Cavin Le
this issue is related to the issue:
http://community.jboss.org/message/522623 - does
this issue resolved in 3.3.3.Final ? because i am still having the same error after
upgrading to 3.3.3
Below is my code. Thank you.
<rich:toolBar
itemSeparator="#{toolBarBean.separator_type}">
<rich:dropDownMenu id="ddMenuMIR"
direction="#{dropDownMenuBean.direction}"
event="#{dropDownMenuBean.event}"
jointPoint="#{dropDownMenuBean.jointPoint}">
<f:facet name="label">
<h:outputText value="Actions"/>
</f:facet>
<rich:menuSeparator />
<rich:menuItem submitMode="ajax"
value="View" ajaxSingle="true"
action="#{mirManager.viewMIR()}">
</rich:menuItem>
<!--this version of richface does not work when having 3
or more disable actions-->
<!--therefore have to take one of the action below out for
now-->
<rich:menuSeparator />
<rich:menuItem submitMode="ajax"
value="Edit" ajaxSingle="true"
disabled="#{incidentsMIR.releasedDate !=
null}"
action="#{mirManager.modifyMIR()}">
</rich:menuItem>
<rich:menuSeparator />
<rich:menuItem submitMode="ajax"
value="Release" ajaxSingle="true"
disabled="#{incidentsMIR.releasedDate !=
null}"
reRender="popupReleaseForm"
oncomplete="javascript:Richfaces.showModalPanel('releasePopup')"
action="#{mirManager.preReleaseMIR()}">
</rich:menuItem>
<rich:menuSeparator />
<rich:menuItem submitMode="ajax"
value="Remove" ajaxSingle="true"
disabled="#{incidentsMIR.releasedDate !=
null}"
reRender="popupRemoveForm"
oncomplete="javascript:Richfaces.showModalPanel('removePopup')"
action="#{mirManager.preRemoveMIR()}">
</rich:menuItem>
</rich:dropDownMenu>
</rich:toolBar>
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
https://jira.jboss.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
http://www.atlassian.com/software/jira