[JBoss JIRA] Created: (RF-5412) Editor: "Add/Edit link" pop up problem in case org.ajax4jsf.COMPRESS_SCRIPT=true.
by Alexander Dubovsky (JIRA)
Editor: "Add/Edit link" pop up problem in case org.ajax4jsf.COMPRESS_SCRIPT=true.
---------------------------------------------------------------------------------
Key: RF-5412
URL: https://jira.jboss.org/jira/browse/RF-5412
Project: RichFaces
Issue Type: Bug
Affects Versions: 3.3.0
Environment: 3.3.0.BETA4
Reporter: Alexander Dubovsky
Assignee: Nick Belaevski
Attachments: 27.png
# Open Editor page in richfaces-demo application. Select advanced theme.
# Input some word and select it. Click "Add/Edit link" icon.
Result: pop up without labels is shown (see screen shot) and exception is thrown in console:
org.ajax4jsf.resource.ScriptRenderer send
SEVERE: Error send script to client for resource scripts/tiny_mce/themes/advanced/js/link.js
org.ajax4jsf.javascript.JSMin$UnterminatedRegExpLiteralException: Unterminated regular expression at line 91 and column 0
at org.ajax4jsf.javascript.JSMin.action(JSMin.java:213)
at org.ajax4jsf.javascript.JSMin.jsmin(JSMin.java:289)
at org.ajax4jsf.resource.ScriptRenderer.send(ScriptRenderer.java:62)
at org.ajax4jsf.resource.InternetResourceBase.send(InternetResourceBase.java:376)
at org.ajax4jsf.resource.ResourceLifecycle.sendResource(ResourceLifecycle.java:221)
at org.ajax4jsf.resource.ResourceLifecycle.send(ResourceLifecycle.java:157)
at org.ajax4jsf.resource.InternetResourceService.load(InternetResourceService.java:335)
at org.ajax4jsf.cache.LRUMapCache.load(LRUMapCache.java:116)
at org.ajax4jsf.cache.LRUMapCache.get(LRUMapCache.java:87)
at org.ajax4jsf.resource.InternetResourceService.serviceResource(InternetResourceService.java:195)
at org.ajax4jsf.resource.InternetResourceService.serviceResource(InternetResourceService.java:141)
at org.ajax4jsf.webapp.BaseFilter.doFilter(BaseFilter.java:527)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233)
at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:175)
at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128)
at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:263)
at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:844)
at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:584)
at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:447)
at java.lang.Thread.run(Unknown Source)
# Click "Insert/Edit image" icon => correct pop up appears
# Click "Add/Edit link" icon again => correct pop up appears after the second click.
The problem is resolved by changing value of org.ajax4jsf.COMPRESS_SCRIPT context param to FALSE.
--
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
17 years, 3 months
[JBoss JIRA] Created: (RF-5442) Tree: selection impossible after ajax reRender under Safari.
by Alexander Dubovsky (JIRA)
Tree: selection impossible after ajax reRender under Safari.
------------------------------------------------------------
Key: RF-5442
URL: https://jira.jboss.org/jira/browse/RF-5442
Project: RichFaces
Issue Type: Bug
Affects Versions: 3.3.0
Environment: 3.3.0.BETA5, Safari
Reporter: Alexander Dubovsky
Assignee: Nick Belaevski
Priority: Critical
# Open page with Tree (see source below) in Safari
# Select node => node is selected
# Rerender tree and try to select some node
Result: node is not selected
Source:
<h:form>
<rich:tree id="dTree" switchType="ajax" value="#{tTree.data}"
var="defTree" binding="#{tTree.tree}" ajaxSubmitSelection="true"
nodeSelectListener="#{tTree.nodeSelectListener}">
<rich:treeNode>
<h:outputText value="#{defTree} : " />
<h:inputText value="#{defTree.name}" />
</rich:treeNode>
<rich:treeNode>
<h:outputText value="#{defTree}" />
</rich:treeNode>
</rich:tree>
<a4j:commandButton reRender="dTree" value="reRender Tree"></a4j:commandButton>
</h:form>
--
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
17 years, 3 months
[JBoss JIRA] Created: (RF-5363) sorting: when selfSorted="false" default sortIcon is shown in column header.
by Mikhail Vitenkov (JIRA)
sorting: when selfSorted="false" default sortIcon is shown in column header.
----------------------------------------------------------------------------
Key: RF-5363
URL: https://jira.jboss.org/jira/browse/RF-5363
Project: RichFaces
Issue Type: Bug
Affects Versions: 3.3.0
Environment: IE6, IE7, FF 3.1.3, Safari 3.1, Opera 9.62(3.3.0.BETA3)
Reporter: Mikhail Vitenkov
Assignee: Nick Belaevski
Priority: Minor
Use following code:
<rich:dataTable id="table" value="#{customList.customList}"
width="50%" var="dT">
<rich:column sortBy="#{dT.s0}">
<f:facet name="header">
<h:outputText value="s0" />
</f:facet>
<h:outputText value="#{dT.s0}" />
</rich:column>
<rich:column sortBy="#{dT.i0}" selfSorted="false"
sortIcon="/pics/info.gif">
<f:facet name="header">
<h:outputText value="i0" />
</f:facet>
<h:outputText value="#{dT.i0}" />
</rich:column>
</rich:dataTable>
Verify the 2nd column header icon.
--
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
17 years, 3 months