[JBoss JIRA] Created: (RF-1502) contextMenu: content blinks after menu disappears
by Ilya Shaikovsky (JIRA)
contextMenu: content blinks after menu disappears
-------------------------------------------------
Key: RF-1502
URL: http://jira.jboss.com/jira/browse/RF-1502
Project: RichFaces
Issue Type: Bug
Affects Versions: 3.2.0
Reporter: Ilya Shaikovsky
Assigned To: Maksim Kaszynski
Fix For: 3.2.0
with this code -
<rich:contextMenu attached="false" id="menu" submitMode="ajax">
<rich:menuItem value="Show Details">
<a4j:actionparam name="current" value="Show Details" assignTo="#{ddmenu.current}"/>
</rich:menuItem>
<rich:menuGroup value="Actions">
<rich:menuItem value="Put To Basket">
<a4j:actionparam name="current" value="Put To Basket" assignTo="#{ddmenu.current}"/>
</rich:menuItem>
<rich:menuItem value="Read Comments">
<a4j:actionparam name="current" value="Read Comments" assignTo="#{ddmenu.current}"/>
</rich:menuItem>
<rich:menuItem value="Go to {car} {model} site">
<a4j:actionparam name="current" value="Go to #{car.make} #{car.model} site" assignTo="#{ddmenu.current}"/>
</rich:menuItem>
</rich:menuGroup>
</rich:contextMenu>
<rich:dataGrid value="#{dataTableScrollerBean.allCars}" var="car" columns="4" elements="12">
<rich:panel id="panel">
<rich:componentControl attachTo="panel" event="oncontextmenu" for=":form:menu" operation="doShow">
<f:param value="#{car.model}" name="model"/>
<f:param value="#{car.make}" name="car"/>
</rich:componentControl>
<f:facet name="header">
<h:outputText value="#{car.make} #{car.model}"></h:outputText>
</f:facet>
<h:panelGrid columns="2">
<h:outputText value="Price:" styleClass="label"></h:outputText>
<h:outputText value="#{car.price}" />
</h:panelGrid>
</rich:panel>
</rich:dataGrid>
After menu item clicked - table blinks.
If I put the menu After the table - any visual effect appears.
--
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, 10 months
[JBoss JIRA] Created: (RF-1071) Panel Menu mode attribute doesn't works.
by Ilya Shaikovsky (JIRA)
Panel Menu mode attribute doesn't works.
----------------------------------------
Key: RF-1071
URL: http://jira.jboss.com/jira/browse/RF-1071
Project: RichFaces
Issue Type: Bug
Affects Versions: 3.1.1
Reporter: Ilya Shaikovsky
Assigned To: Maksim Kaszynski
Fix For: 3.2.0
<rich:panelMenuGroup action="#{bean.action}" mode="ajax">
<rich:panelMenuItem label="test" reRender="test" action="#{capitalsBean.action}" mode="ajax">
<f:param value="test value" name="test"/>
</rich:panelMenuItem>
</rich:panelMenuGroup>
</rich:panelMenu>
works fine
<rich:panelMenuGroup action="#{bean.action}" mode="ajax">
<rich:panelMenuItem label="test" reRender="test" action="#{capitalsBean.action}" >
<f:param value="test value" name="test"/>
</rich:panelMenuItem>
</rich:panelMenuGroup>
</rich:panelMenu>
doesnt works in ajax mode. in this case common submit fired.
Probably Should be in 3.1.x.
--
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, 10 months
[JBoss JIRA] Created: (RF-4990) The states of multiple SimpleTogglePanels in one page got sync all the time
by Sean Moon (JIRA)
The states of multiple SimpleTogglePanels in one page got sync all the time
---------------------------------------------------------------------------
Key: RF-4990
URL: https://jira.jboss.org/jira/browse/RF-4990
Project: RichFaces
Issue Type: Bug
Affects Versions: 3.2.2
Reporter: Sean Moon
When a page contains more than one simpleTogglePanel(STP from now), it keeps collapsing all STP.
<h:panelGroup id="topicsAndClientsDetails">
<a4j:repeat value="#{orderNewControl.orderItems}" var="item">
<rich:simpleTogglePanel headerClass="FormPanelTab" opened="#{item.opened}"
switchType="client">
.....
<a4j:commandLink action="#{orderNewControl.addDetailItem}" value="+Add Line"
reRender="detailListPanel,topicsAndClientsDetails">
<f:param name="detailItemClient" value="#{item.client.id}" />
<f:param name="detailItemTopic" value="#{item.topic.id}" />
</a4j:commandLink>
When the tag property, "opened", gets changed for one STP, but it keeps collapsing all STPs when I reRendered parent panelGroup.
It used to be working fine when I tested on 3.2.1.
I guess there has been some code changes on this module.
--
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, 10 months