[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
17 years
[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
17 years
[JBoss JIRA] Assigned: (RF-851) "<%%%>" string value processed wrong with Tidy Filter
by Viktor Volkov (JIRA)
[ http://jira.jboss.com/jira/browse/RF-851?page=all ]
Viktor Volkov reassigned RF-851:
--------------------------------
Assignee: Aleksej Yanul (was: Viktor Volkov)
> "<%%%>" string value processed wrong with Tidy Filter
> -----------------------------------------------------
>
> Key: RF-851
> URL: http://jira.jboss.com/jira/browse/RF-851
> Project: RichFaces
> Issue Type: Bug
> Affects Versions: 3.1.0
> Reporter: Ilya Shaikovsky
> Assigned To: Aleksej Yanul
> Priority: Critical
> Fix For: 3.2.0, 3.1.3
>
>
> <h:form>
> <h:dataTable value="#{capitalsBean.capitals}" var="cap" rows="20" border="1" id="table">
> <h:column>
> <h:inputText value="#{cap.name}" rendered="#{cap.checked}"></h:inputText>
> <h:outputText value="#{cap.name}" rendered="#{not cap.checked}"></h:outputText>
> </h:column>
> <h:column>
> <h:inputText value="#{cap.state}" rendered="#{cap.checked}"></h:inputText>
> <h:outputText value="#{cap.state}" rendered="#{not cap.checked}"></h:outputText>
> </h:column>
> <h:column>
> <h:selectBooleanCheckbox value="#{cap.checked}">
> <a4j:support event="onclick" reRender="table"></a4j:support>
> </h:selectBooleanCheckbox>
> </h:column>
> </h:dataTable>
> </h:form>
> 1) Check the check box to make line editable,
> 2) paste <%%%> to any edit
> 3) uncheck the box to submit this
> 4) try to check again
> After WriteAttribute writes this value to input's value attribute it escaped all symbols Ok. But after Tydy process the page it use still "<%%%>" and Parse error appears.
> Works fine under FastFilter
--
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
17 years