[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, 6 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, 6 months
[JBoss JIRA] Created: (RF-6439) ExtendedDataTable in modal panel - undefined this.selectionManger
by Nick Belaevski (JIRA)
ExtendedDataTable in modal panel - undefined this.selectionManger
-----------------------------------------------------------------
Key: RF-6439
URL: https://jira.jboss.org/jira/browse/RF-6439
Project: RichFaces
Issue Type: Bug
Environment: IE7
Reporter: Nick Belaevski
<rich:modalPanel id="panelDoc" width="650" height="650">
<f:facet name="header">
<h:panelGroup>Doc</h:panelGroup>
</f:facet>
<f:facet name="controls">
<h:panelGroup>
<h:graphicImage value="/img/break.gif" style="cursor: pointer;">
<rich:componentControl for="panelDoc" operation="hide" event="onclick"/>
</h:graphicImage>
</h:panelGroup>
</f:facet>
<h:form>
<rich:extendedDataTable value="#{forum5Bean.data}" var="field1" id="extData">
<rich:column>#{field1}</rich:column>
</rich:extendedDataTable>
</h:form>
</rich:modalPanel>
<h:form>
<a4j:commandLink value="open panel" reRender="extData" oncomplete="Richfaces.showModalPanel('panelDoc');"/>
</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
16 years, 7 months