[JBoss JIRA] Created: (RF-7040) Not possible to rerender rich:editor in Google Chrome
by Frank Bitzer (JIRA)
Not possible to rerender rich:editor in Google Chrome
-----------------------------------------------------
Key: RF-7040
URL: https://jira.jboss.org/jira/browse/RF-7040
Project: RichFaces
Issue Type: Bug
Components: component-input
Affects Versions: 3.3.0
Environment: RichFaces 3.3.0 or 3.3.1.CR2, Google Chrome 1.0.154.64
Reporter: Frank Bitzer
Priority: Blocker
When a rich:editor is rerendered using an a4j:commandLink in Google Chrome, it gets disabled and the content disappears, while in all other browsers (tested IE7, FF3, Opera 9.6) everything works fine.
Here is the code to reproduce the behaviour:
<h:form>
<a4j:commandLink action="#{bean.prepareMessage()}" reRender="editor">
Refresh editor
</a4j:commandLink>
<rich:editor id="editor" value="#{bean.message}" useSeamText="false" width="600" height="300"/>
</h:form>
Bean "bean":
//Setters and getters for property "message"
//...
public void prepareMessage(){
message = String.valueOf(new GregorianCalendar().getTimeInMillis());
}
--
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
16 years, 6 months
[JBoss JIRA] Created: (RF-6504) Support colon in hotkey selector
by c_inconnu (JIRA)
Support colon in hotkey selector
--------------------------------
Key: RF-6504
URL: https://jira.jboss.org/jira/browse/RF-6504
Project: RichFaces
Issue Type: Bug
Affects Versions: 3.3.0
Environment: Java 6
Seam 2.1.1
Reporter: c_inconnu
When using hotkey selector with a component which has a composite ID (with colon, ie. "myDecorator:myComponentId") one cannot use :
<r:hotKey key="esc" handler="doSth()" selector="##{r:clientId(myComponentId)}" />
Since jQuery does not understand colon. We must escape it :
<r:hotKey key="esc" handler="doSth()" selector="##{r:clientId(myComponentId).replace(':','\\:')}" />
I would be nice if it was supported out of the box.
Thanks
--
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
16 years, 7 months
[JBoss JIRA] Created: (RF-5609) Tree: selection and expanding impossible if ajaxSingle=true and some input validation failed.
by Alexander Dubovsky (JIRA)
Tree: selection and expanding impossible if ajaxSingle=true and some input validation failed.
---------------------------------------------------------------------------------------------
Key: RF-5609
URL: https://jira.jboss.org/jira/browse/RF-5609
Project: RichFaces
Issue Type: Bug
Affects Versions: 3.3.0
Environment: 3.2.2.GA, 3.3.0.CR2
Reporter: Alexander Dubovsky
Assignee: Nick Belaevski
Fix For: Future
Code:
<rich:messages ajaxRendered="true" />
<rich:tree value="#{custom.data}" var="item">
<rich:treeNode ajaxSubmitSelection="true"
ajaxSingle="true"
nodeSelectListener="#{item.processSelection}">
<h:outputText value="#{item.value}" />
</rich:treeNode>
</rich:tree>
<h:inputText value="" required="true" />
# Open page and try to expand or select some node
Result: expanding only root nodes is possible. Selection impossible at all. Above-named actions cause validation message.
--
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
16 years, 7 months