[JBoss JIRA] Created: (RF-6029) treeNode ondropend and oncomplete never executed using DnD
by Ilya Shaikovsky (JIRA)
treeNode ondropend and oncomplete never executed using DnD
----------------------------------------------------------
Key: RF-6029
URL: https://jira.jboss.org/jira/browse/RF-6029
Project: RichFaces
Issue Type: Bug
Affects Versions: 3.3.1
Reporter: Ilya Shaikovsky
Assignee: Nick Belaevski
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4206859#4206859
also checked within livedemo dnd sample
<rich:tree ajaxKeys="#{null}" style="width:300px" nodeSelectListener="#{simpleTreeDndBean.processSelection}"
reRender="selectedNode" ajaxSubmitSelection="true" switchType="client" dragIndicator="indicator2"
value="#{simpleTreeDndBean.treeNode}" var="item" id="tree" treeNodeVar="treeNode"
dropListener="#{simpleTreeDndBean.dropListener}" nodeFace="#{treeNode.parent.parent == null ? 'node' : 'leaf'}">
<rich:treeNode type="node" acceptedTypes="pic" icon="#{treeNode.icon}" iconLeaf="#{treeNode.leafIcon}" oncomplete="alert('complete');" ondropend="alert('drop complete');">
<h:outputText value="#{item}"/>
</rich:treeNode>
<rich:treeNode type="leaf" dragType="pic" oncomplete="alert('complete');" ondropend="alert('drop complete');">
<rich:dndParam name="label" type="drag">#{item}</rich:dndParam>
<h:outputText value="#{item}"/>
</rich:treeNode>
</rich:tree>
--
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, 11 months
[JBoss JIRA] Created: (RF-6547) calendar in table header broken after reRender
by Ilya Shaikovsky (JIRA)
calendar in table header broken after reRender
----------------------------------------------
Key: RF-6547
URL: https://jira.jboss.org/jira/browse/RF-6547
Project: RichFaces
Issue Type: Bug
Affects Versions: 3.3.0
Reporter: Ilya Shaikovsky
Assignee: Nick Belaevski
after reRender calendar in header not works. calendar which placed outside - still works.
table calendar init called two times while response processing according to a4j:log.
<h:form>
<h:panelGroup layout="block" id="cont">
<rich:calendar />
<rich:dataTable value="#{capitalsBean.capitals}" var="cap" id="table" rows="20">
<rich:column
filterExpression="#{fn:containsIgnoreCase(cap.timeZone, filteringBean.filterZone)}">
<f:facet name="header">
<rich:calendar />
</f:facet>
<h:outputText value="#{cap.timeZone}" />
</rich:column>
</rich:dataTable>
</h:panelGroup>
<a4j:commandButton value="submit" reRender="cont"/>
</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, 11 months
[JBoss JIRA] Created: (RF-6078) modalPanel: "zindex" dosn't work in case iframe present on the same page.
by Mikhail Vitenkov (JIRA)
modalPanel: "zindex" dosn't work in case iframe present on the same page.
-------------------------------------------------------------------------
Key: RF-6078
URL: https://jira.jboss.org/jira/browse/RF-6078
Project: RichFaces
Issue Type: Bug
Affects Versions: 3.3.0
Environment: IE6, IE7, FF 3.1.3, Safari 3.1, Opera 9.62, Chrome 1.0.154.43(3.3.0.GA)
Reporter: Mikhail Vitenkov
Assignee: Nick Belaevski
#1. Use following code on a page:
<iframe src="pages/303.pdf"
style="position:absolute;width: 500px; height: 500px; background-color: white; overflow-y: hidden; z-index: 1" />
<rich:modalPanel showWhenRendered="true" zindex="333" moveable="true" id="modalPanelID">
<f:facet name="header">
<h:outputText value="Heder goes here..." />
</f:facet>
<f:facet name="controls">
<h:graphicImage value="/pics/error.gif"
onclick="Richfaces.hideModalPanel('modalPanelID'); return false;" />
</f:facet>
<h:outputText value="Text" />
</rich:modalPanel>
#2. Navigate to the page and verify modalPanel layout displaying.
Actual behavior:
Component is overlayed by iframe.
--
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, 11 months