[JBoss JIRA] Created: (RF-1145) DataScroller. Parameters(both a4j and f) always null.
by Ilya Shaikovsky (JIRA)
DataScroller. Parameters(both a4j and f) always null.
-----------------------------------------------------
Key: RF-1145
URL: http://jira.jboss.com/jira/browse/RF-1145
Project: RichFaces
Issue Type: Bug
Affects Versions: 3.1.2, 3.2.0
Reporter: Ilya Shaikovsky
Assigned To: Anton Belevich
Fix For: 3.2.0
<rich:datascroller id="scroller" pageIndexVar="pi" action="#{bean.action}">
<f:param name="index" assignTo="#{bean.property1}" value="#{pi}"/>
</rich:datascroller>
<rich:datascroller ajaxSingle="false" id="scroller" pageIndexVar="pi" action="#{bean.action}">
<a4j:actionparam name="index" assignTo="#{bean.property1}" value="#{pi}"></a4j:actionparam>
</rich:datascroller>
in seter:
System.out.println("Setting property1 to _> "+ property1);
in action
System.out.println(FacesContext.getCurrentInstance().getExternalContext().getRequestParameterMap().get("pi"));
Both sysouts prints null in log.
--
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
14 years, 7 months
[JBoss JIRA] Created: (RF-1635) contextMenu is getting broken if using componentControl inside the menuItem
by Tsikhon Kuprevich (JIRA)
contextMenu is getting broken if using componentControl inside the menuItem
---------------------------------------------------------------------------
Key: RF-1635
URL: http://jira.jboss.com/jira/browse/RF-1635
Project: RichFaces
Issue Type: Bug
Affects Versions: 3.1.3
Environment: JSF 1.2
tomcat 6.0
FF 2.x
Reporter: Tsikhon Kuprevich
Assigned To: Nick Belaevski
Priority: Critical
It's expected that menu desapears when onmouseover action abovee the "b" menuitem occurs.
<div style="border: dotted">div <rich:contextMenu
id="ccContextMenuID" submitMode="ajax" attach="true">
<rich:menuItem icon="/img/header.png" value="tab1">
<f:param name="cmdParam" value="menu" />
</rich:menuItem>
<rich:menuSeparator />
<rich:menuItem icon="/img/info.gif" value="a" reRender="cmInfoID">
<f:param name="cmdParam" value="a" />
</rich:menuItem>
<rich:menuItem icon="/img/info.gif" value="b" reRender="cmInfoID">
<rich:componentControl event="onmouseover" for="ccContextMenuID"
disableDefault="true" operation="hide" />
</rich:menuItem>
<rich:menuItem icon="/img/info.gif" value="c" reRender="cmInfoID">
<f:param name="cmdParam" value="c" />
</rich:menuItem>
</rich:contextMenu></div>
works fine with IE, but in FF it throws JS error messsage for the following code:
]).attachToParent('j_id7','oncontextmenu',{} );Richfaces.disableDefaultHandler('oncontextmenu');
--
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
14 years, 9 months