[JBoss JIRA] Created: (RF-1359) Resource xxxSeparatorImage not loaded during initialization
by Alan Ballard (JIRA)
Resource xxxSeparatorImage not loaded during initialization
-----------------------------------------------------------
Key: RF-1359
URL: http://jira.jboss.com/jira/browse/RF-1359
Project: RichFaces
Issue Type: Bug
Affects Versions: 3.1.1
Reporter: Alan Ballard
The resources xxxxSeparatorImage, (e.g. LineSeparatortImage) used by ToolBarGroupRenderer, is not specified in the META-INF/resource-config.xml file, so it doesn't get preloaded when the application starts.
In a single-server environment this doesn't matter, because the ToolBarGroupRenderer loads it into the resource map the first time it is used to render a page.
However in our multi-server environment we occassionally get a resource-not-found error when the request to load the image goes to a different server from the one that processed the request to load the page.
--
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
18 years, 3 months
[JBoss JIRA] Created: (RF-1469) contextMenu: a4j submit() does not work
by Aleksej Yanul (JIRA)
contextMenu: a4j submit() does not work
---------------------------------------
Key: RF-1469
URL: http://jira.jboss.com/jira/browse/RF-1469
Project: RichFaces
Issue Type: Bug
Affects Versions: 3.1.3
Reporter: Aleksej Yanul
Assigned To: Nick Belaevski
<rich:panel style="width: 130px; height: 50px; background-color: #98FB98;">
<h:outputText value="panel with contextMenu(Test)" />
<rich:contextMenu id="contextMenuID" attached="#{contextMenu.attached}" submitMode="ajax"
event="#{contextMenu.event}" disableDefaultMenu="#{contextMenu.disableDefaultMenu}" rendered="#{contextMenu.rendered}"
hideDelay="#{contextMenu.hideDelay}" showDelay="#{contextMenu.showDelay}" popupWidth="#{contextMenu.popupWidth}">
<rich:menuItem icon="/pics/header.png" value="abc" reRender="cmInfoID">
<f:param name="cmdParam" value="abc" />
</rich:menuItem>
</rich:contextMenu>
</rich:panel>
<h:panelGrid id="cmInfoID" olumns="2">
<h:outputText value="Select items: " />
<h:outputText value="#{contextMenu.info}" style="color: red" />
</h:panelGrid>
////// -= code =-////////////////
public String getInfo() {
FacesContext facesContext = FacesContext.getCurrentInstance();
Map params = facesContext.getExternalContext().getRequestParameterMap();
String cmdParam = (String) params.get("cmdParam");
if (cmdParam != null) info = cmdParam;
return info;
}
--
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
18 years, 3 months
[JBoss JIRA] Created: (RF-1472) orderingList: activity bar is getting broken in case of empty column in IE
by Tsikhon Kuprevich (JIRA)
orderingList: activity bar is getting broken in case of empty column in IE
--------------------------------------------------------------------------
Key: RF-1472
URL: http://jira.jboss.com/jira/browse/RF-1472
Project: RichFaces
Issue Type: Bug
Affects Versions: 3.1.3
Environment: IE 6,7
Reporter: Tsikhon Kuprevich
<rich:orderingList value="#{listBean.capitals}" var="capitals"
id="orderingListID">
<f:facet name="caption">caption_1</f:facet>
<h:column>
<f:facet name="header">
<f:verbatim>header_1</f:verbatim>
</f:facet>
<h:outputText value="#{capitals.stateFlag}" />
</h:column>
<h:column>
<f:facet name="header">
<f:verbatim>header_2</f:verbatim>
</f:facet>
<h:outputText value="12" />
</h:column>
<h:column>
<f:facet name="header">
<f:verbatim>header_0</f:verbatim>
</f:facet>
<h:outputText value="" />
</h:column>
<h:column>
<f:facet name="header">
<f:verbatim>header_3</f:verbatim>
</f:facet>
<h:outputText value="#{capitals.capitalName}" />
</h:column>
</rich:orderingList>
--
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
18 years, 3 months