[JBoss JIRA] (RF-12697) datascroller not working with ui:include
by Brian Leathem (JIRA)
[ https://issues.jboss.org/browse/RF-12697?page=com.atlassian.jira.plugin.s... ]
Brian Leathem commented on RF-12697:
------------------------------------
if you don't use the _ui:include_, but instead embed the _home.xhtml_ facelet code directly in the page, does that _dataScroller_ work as you expect?
> datascroller not working with ui:include
> ----------------------------------------
>
> Key: RF-12697
> URL: https://issues.jboss.org/browse/RF-12697
> Project: RichFaces
> Issue Type: Bug
> Security Level: Public(Everyone can see)
> Affects Versions: 4.2.2.Final
> Environment: RHEL-5.5, Windows7, Jboss-7.1.1.Final, Seam-2.3, Richfaces-4.2.2.Final
> Reporter: Raghavan TV
>
> We have facing this problem after migrating from richfaces 3.3.3 to richfaces 4.2.2.Final (or 4.2.3.Final)
> The datascroller in the child page is not working.
> If we remove the ui:include from the base layout page, then the datascroller works. There are no exceptions or fatal errors logged in the logs.
> {code:title=layout.xhtml}
> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
> "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
> <f:view xmlns="http://www.w3.org/1999/xhtml"
> xmlns:ui="http://java.sun.com/jsf/facelets"
> xmlns:h="http://java.sun.com/jsf/html"
> xmlns:f="http://java.sun.com/jsf/core"
> xmlns:rich="http://richfaces.org/rich"
> xmlns:s="http://jboss.com/products/seam/taglib">
> <h:html>
> <h:head>
> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
> <title>Sample Application</title>
> <link href="stylesheet/theme.ecss" rel="stylesheet" type="text/css" />
> <link href="stylesheet/theme.css" rel="stylesheet" type="text/css" />
> </h:head>
> <h:body>
> <table style="basetable">
> <tr><td> <ui:include src="header1.xhtml" /> </td> </tr>
> <tr><td> <ui:insert name="body" /> </td> </tr>
> </table>
> </h:body>
> </h:html>
> </f:view>
> {code}
> {code:title=home.xhtml}
> <ui:composition xmlns="http://www.w3.org/1999/xhtml"
> xmlns:ui="http://java.sun.com/jsf/facelets"
> xmlns:h="http://java.sun.com/jsf/html"
> xmlns:f="http://java.sun.com/jsf/core"
> xmlns:a4j="http://richfaces.org/a4j"
> xmlns:rich="http://richfaces.org/rich"
> template="layout/layout.xhtml">
> <ui:define name="body">
>
>
> <h:form id="orderTrackingSub">
> <rich:panel style="width:990px">
> <f:facet name="header">Order Information</f:facet>
> <rich:panel rendered="#{not empty orderDetVo.orv}" style="width:990px" >
> <rich:dataScroller id="orderdatascroller" for="orderSub" align="center"
> inactiveStyleClass="inactiveDS" selectedStyleClass="activeDS"/>/>
> <rich:dataTable id="orderSub" value="#{orderDetVo.orv}" align="center" var="item"
> rowClasses="row1,row2" rows = "12" rowKeyVar="row" >
> ...
> ...
> </rich:dataTable>
> </rich:panel>
> </rich:panel>
> </h:form>
> </ui:define>
> </ui:composition>
> {code}
> Thanks
> -R
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 2 months
[JBoss JIRA] (RF-12697) datascroller not working with ui:include
by Brian Leathem (JIRA)
[ https://issues.jboss.org/browse/RF-12697?page=com.atlassian.jira.plugin.s... ]
Brian Leathem updated RF-12697:
-------------------------------
Description:
We have facing this problem after migrating from richfaces 3.3.3 to richfaces 4.2.2.Final (or 4.2.3.Final)
The datascroller in the child page is not working.
If we remove the ui:include from the base layout page, then the datascroller works. There are no exceptions or fatal errors logged in the logs.
{code:title=layout.xhtml}
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<f:view xmlns="http://www.w3.org/1999/xhtml"
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:rich="http://richfaces.org/rich"
xmlns:s="http://jboss.com/products/seam/taglib">
<h:html>
<h:head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Sample Application</title>
<link href="stylesheet/theme.ecss" rel="stylesheet" type="text/css" />
<link href="stylesheet/theme.css" rel="stylesheet" type="text/css" />
</h:head>
<h:body>
<table style="basetable">
<tr><td> <ui:include src="header1.xhtml" /> </td> </tr>
<tr><td> <ui:insert name="body" /> </td> </tr>
</table>
</h:body>
</h:html>
</f:view>
{code}
{code:title=home.xhtml}
<ui:composition xmlns="http://www.w3.org/1999/xhtml"
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:a4j="http://richfaces.org/a4j"
xmlns:rich="http://richfaces.org/rich"
template="layout/layout.xhtml">
<ui:define name="body">
<h:form id="orderTrackingSub">
<rich:panel style="width:990px">
<f:facet name="header">Order Information</f:facet>
<rich:panel rendered="#{not empty orderDetVo.orv}" style="width:990px" >
<rich:dataScroller id="orderdatascroller" for="orderSub" align="center"
inactiveStyleClass="inactiveDS" selectedStyleClass="activeDS"/>/>
<rich:dataTable id="orderSub" value="#{orderDetVo.orv}" align="center" var="item"
rowClasses="row1,row2" rows = "12" rowKeyVar="row" >
...
...
</rich:dataTable>
</rich:panel>
</rich:panel>
</h:form>
</ui:define>
</ui:composition>
{code}
Thanks
-R
was:
We have facing this problem after migrating from richfaces 3.3.3 to richfaces 4.2.2.Final (or 4.2.3.Final)
The datascroller in the child page is not working.
If we remove the ui:include from the base layout page, then the datascroller works. There are no exceptions or fatal errors logged in the logs.
------------
layout.xhtml
------------
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<f:view xmlns="http://www.w3.org/1999/xhtml"
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:rich="http://richfaces.org/rich"
xmlns:s="http://jboss.com/products/seam/taglib">
<h:html>
<h:head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Sample Application</title>
<link href="stylesheet/theme.ecss" rel="stylesheet" type="text/css" />
<link href="stylesheet/theme.css" rel="stylesheet" type="text/css" />
</h:head>
<h:body>
<table style="basetable">
<tr><td> <ui:include src="header1.xhtml" /> </td> </tr>
<tr><td> <ui:insert name="body" /> </td> </tr>
</table>
</h:body>
</h:html>
</f:view>
----------
home.xhtml
----------
<ui:composition xmlns="http://www.w3.org/1999/xhtml"
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:a4j="http://richfaces.org/a4j"
xmlns:rich="http://richfaces.org/rich"
template="layout/layout.xhtml">
<ui:define name="body">
<h:form id="orderTrackingSub">
<rich:panel style="width:990px">
<f:facet name="header">Order Information</f:facet>
<rich:panel rendered="#{not empty orderDetVo.orv}" style="width:990px" >
<rich:dataScroller id="orderdatascroller" for="orderSub" align="center"
inactiveStyleClass="inactiveDS" selectedStyleClass="activeDS"/>/>
<rich:dataTable id="orderSub" value="#{orderDetVo.orv}" align="center" var="item"
rowClasses="row1,row2" rows = "12" rowKeyVar="row" >
...
...
</rich:dataTable>
</rich:panel>
</rich:panel>
</h:form>
</ui:define>
</ui:composition>
Thanks
-R
> datascroller not working with ui:include
> ----------------------------------------
>
> Key: RF-12697
> URL: https://issues.jboss.org/browse/RF-12697
> Project: RichFaces
> Issue Type: Bug
> Security Level: Public(Everyone can see)
> Affects Versions: 4.2.2.Final
> Environment: RHEL-5.5, Windows7, Jboss-7.1.1.Final, Seam-2.3, Richfaces-4.2.2.Final
> Reporter: Raghavan TV
>
> We have facing this problem after migrating from richfaces 3.3.3 to richfaces 4.2.2.Final (or 4.2.3.Final)
> The datascroller in the child page is not working.
> If we remove the ui:include from the base layout page, then the datascroller works. There are no exceptions or fatal errors logged in the logs.
> {code:title=layout.xhtml}
> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
> "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
> <f:view xmlns="http://www.w3.org/1999/xhtml"
> xmlns:ui="http://java.sun.com/jsf/facelets"
> xmlns:h="http://java.sun.com/jsf/html"
> xmlns:f="http://java.sun.com/jsf/core"
> xmlns:rich="http://richfaces.org/rich"
> xmlns:s="http://jboss.com/products/seam/taglib">
> <h:html>
> <h:head>
> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
> <title>Sample Application</title>
> <link href="stylesheet/theme.ecss" rel="stylesheet" type="text/css" />
> <link href="stylesheet/theme.css" rel="stylesheet" type="text/css" />
> </h:head>
> <h:body>
> <table style="basetable">
> <tr><td> <ui:include src="header1.xhtml" /> </td> </tr>
> <tr><td> <ui:insert name="body" /> </td> </tr>
> </table>
> </h:body>
> </h:html>
> </f:view>
> {code}
> {code:title=home.xhtml}
> <ui:composition xmlns="http://www.w3.org/1999/xhtml"
> xmlns:ui="http://java.sun.com/jsf/facelets"
> xmlns:h="http://java.sun.com/jsf/html"
> xmlns:f="http://java.sun.com/jsf/core"
> xmlns:a4j="http://richfaces.org/a4j"
> xmlns:rich="http://richfaces.org/rich"
> template="layout/layout.xhtml">
> <ui:define name="body">
>
>
> <h:form id="orderTrackingSub">
> <rich:panel style="width:990px">
> <f:facet name="header">Order Information</f:facet>
> <rich:panel rendered="#{not empty orderDetVo.orv}" style="width:990px" >
> <rich:dataScroller id="orderdatascroller" for="orderSub" align="center"
> inactiveStyleClass="inactiveDS" selectedStyleClass="activeDS"/>/>
> <rich:dataTable id="orderSub" value="#{orderDetVo.orv}" align="center" var="item"
> rowClasses="row1,row2" rows = "12" rowKeyVar="row" >
> ...
> ...
> </rich:dataTable>
> </rich:panel>
> </rich:panel>
> </h:form>
> </ui:define>
> </ui:composition>
> {code}
> Thanks
> -R
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 2 months
[JBoss JIRA] (RF-12695) rich:select incorrect bevior on IE9 with many selectItems
by Brian Leathem (JIRA)
[ https://issues.jboss.org/browse/RF-12695?page=com.atlassian.jira.plugin.s... ]
Brian Leathem reassigned RF-12695:
----------------------------------
Assignee: Pavol Pitonak
QE, please verify
> rich:select incorrect bevior on IE9 with many selectItems
> ---------------------------------------------------------
>
> Key: RF-12695
> URL: https://issues.jboss.org/browse/RF-12695
> Project: RichFaces
> Issue Type: Bug
> Security Level: Public(Everyone can see)
> Components: component-selects
> Affects Versions: 4.1.0.Final
> Environment: Internet Explorer 9, Windows 7
> Reporter: kevin 2
> Assignee: Pavol Pitonak
>
> rich:select component has incorrect behavior on IE9 when it contains many items.
> {code:html}
> <rich:select id="selectId">
> <f:selectItems value="#{select.hugeList}"/>
> </rich:select>
> {code}
> When you scroll up and down few times, try to select a value in the bottom of the list, then the scrollbar moves down indefinitely so the hovered value cannot be selected.
> The problem seems to appear with a list of 100 elements or more.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 2 months
[JBoss JIRA] (RF-12682) extendedDataTable render issue with rich:tabPanel (4.2.3)
by Brian Leathem (JIRA)
[ https://issues.jboss.org/browse/RF-12682?page=com.atlassian.jira.plugin.s... ]
Brian Leathem reassigned RF-12682:
----------------------------------
Assignee: Pavol Pitonak
Pavol, can you please look at reproducing this issue? It would be good to know if we have a regression to deal with before we release 4.3.0.Final
> extendedDataTable render issue with rich:tabPanel (4.2.3)
> ---------------------------------------------------------
>
> Key: RF-12682
> URL: https://issues.jboss.org/browse/RF-12682
> Project: RichFaces
> Issue Type: Bug
> Security Level: Public(Everyone can see)
> Components: component-tables
> Affects Versions: 4.2.3.Final
> Reporter: Kaveh A.
> Assignee: Pavol Pitonak
> Labels: extendedDataTable, render, richfaces, tabpanel
> Attachments: RichFacesBugEclipseProject.zip
>
>
> This issue is not just specific to tabPanel. Anytime the extendedDataTable is hidden (when the page loads) and then it is made visible later the table can not display the data (table is empty at the load time).
> In this particular case if we load a page with two tabs. Furthermore if we have one extendedDataTable in each tab (the first tab shows and the second tab is not shown at first). In this case once the user clicks on the second tab and tries to populate the extendedDataTable (via any action). Then the table is not rendered properly. A sample project has been provided at the following link that further describe this issue. You can download the eclipse project attached at the end of the following message to reproduce this issue.
> https://community.jboss.org/message/783787
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 2 months
[JBoss JIRA] (RF-12703) showcase - drag and drop - JS error with default dragIndicator
by Brian Leathem (JIRA)
[ https://issues.jboss.org/browse/RF-12703?page=com.atlassian.jira.plugin.s... ]
Brian Leathem updated RF-12703:
-------------------------------
Sprint: 4.3.0.CR1 - Sprint
> showcase - drag and drop - JS error with default dragIndicator
> --------------------------------------------------------------
>
> Key: RF-12703
> URL: https://issues.jboss.org/browse/RF-12703
> Project: RichFaces
> Issue Type: Bug
> Security Level: Public(Everyone can see)
> Components: component-drag/drop, showcase
> Affects Versions: 4.3.0.CR1
> Environment: Firefox, Chrome
> JBoss AS 7.1.1.Final
> Tomcat 7
> Reporter: Juraj Húska
> Assignee: Lukáš Fryč
> Priority: Blocker
> Labels: regression
> Fix For: 4.3.0.CR1
>
> Attachments: chromeDaDJSError.png, ffDaDJSError.png, visualStateOfPAge.png
>
> Original Estimate: 10 minutes
> Remaining Estimate: 10 minutes
>
> When hovering the item over the target a JS error is thrown. The dropping functionality is *broken* too.
> Please check out the attachment to see the *broken* visual state of the page once it is thrown.
> There are also screenshots of the errors, both from Firefox and Chrome.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 2 months