[JBoss JIRA] Created: (RF-5103) action attribute of components doesn't work after ajax rerendering of container
by Tatyana Romanovich (JIRA)
action attribute of components doesn't work after ajax rerendering of container
-------------------------------------------------------------------------------
Key: RF-5103
URL: https://jira.jboss.org/jira/browse/RF-5103
Project: RichFaces
Issue Type: Bug
Affects Versions: 3.3.0
Reporter: Tatyana Romanovich
Assignee: Nick Belaevski
Priority: Critical
1. Create test page:
add
<h:selectBooleanCheckbox value="#{mainTreeBean.flag}">
<a4j:support event="onclick" reRender="outPanelId"></a4j:support>
</h:selectBooleanCheckbox>
<%-- add container with components --%>
<h:panelGroup id="outPanelId"> <%-- or <a4j:outputPanel id="outPanelId">, or <h:panelGrid id="outPanelId"> --%>
<%-- add any component or use example--%>
<h:commandButton action="#{mainTreeBean.test}" value="click" rendered="#{mainTreeBean.flag}" />
<a4j:commandLink action="#{mainTreeBean.test}" value="Click Here!" rendered="#{mainTreeBean.flag}" />
.....
2. Run application, check checkBox, and try to call method in the action attribute
FAILURE: it doesn't work, action can't be called
--
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
15 years, 12 months
[JBoss JIRA] Created: (RF-2974) actionparam assign to doesn't work under MyFaces
by Ilya Shaikovsky (JIRA)
actionparam assign to doesn't work under MyFaces
------------------------------------------------
Key: RF-2974
URL: http://jira.jboss.com/jira/browse/RF-2974
Project: RichFaces
Issue Type: Bug
Affects Versions: 3.2.0, 3.1.4
Environment: MyFaces 1.1.5 (RF 3.1.4)
RF 3.2.0 SNAPSHOT, RF 3.1.4 GA
Reporter: Ilya Shaikovsky
Assigned To: Nick Belaevski
<rich:column>
<f:facet name="header">
<h:outputText value="Action" />
</f:facet>
<a4j:commandButton value="Delete" id="del" oncomplete="Richfaces.showModalPanel('panel')">
<t:updateActionListener property="#{capitalsBean.capitalToRemove}" value="#{cap}"/>
</a4j:commandButton>
</rich:column>
works and
<rich:column>
<f:facet name="header">
<h:outputText value="Action" />
</f:facet>
<a4j:commandButton value="Delete" id="del" oncomplete="Richfaces.showModalPanel('panel')">
<a4j:actionparam name="del" assignTo="#{capitalsBean.capitalToRemove}" value="#{cap}"/>
</a4j:commandButton>
</rich:column>
doesn't
--
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
15 years, 12 months