[JBoss JIRA] Created: (RF-6873) CLONE -dataScroller doesn't render new page inside dataGrid component.
by titi gigi (JIRA)
CLONE -dataScroller doesn't render new page inside dataGrid component.
----------------------------------------------------------------------
Key: RF-6873
URL: https://jira.jboss.org/jira/browse/RF-6873
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.BETA2) seam 2.1.0.SP1
Reporter: titi gigi
Assignee: Mikhail Vitenkov
#1. Add following code:
<rich:dataGrid id="dataGridID" value="#{dataGrid.allCars}" var="car" columns="#{dataGrid.columns}"
elements="#{dataGrid.elements}">
<f:facet name="header">
<h:outputText value="Car Store"></h:outputText>
</f:facet>
<rich:panel>
<f:facet name="header">
<h:outputText value="#{car.make} #{car.model}"></h:outputText>
</f:facet>
<h:panelGrid columns="2">
<h:outputText value="Price:"></h:outputText>
<h:outputText value="#{car.price}" />
<h:outputText value="Mileage:"></h:outputText>
<h:outputText value="#{car.mileage}" />
<rich:inplaceInput defaultLabel="add comment here.." />
</h:panelGrid>
</rich:panel>
<f:facet name="footer">
<rich:datascroller></rich:datascroller>
</f:facet>
</rich:dataGrid>
#2. Navigate to the page.
#3. Try to change page using any dataScroller controls.
Actual behavior:
New pages doesn't render.
--
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-6679) columns: sortIcon, sortIconAscending and sortIconDescending don't work.
by Mikhail Vitenkov (JIRA)
columns: sortIcon, sortIconAscending and sortIconDescending don't work.
-----------------------------------------------------------------------
Key: RF-6679
URL: https://jira.jboss.org/jira/browse/RF-6679
Project: RichFaces
Issue Type: Bug
Affects Versions: 3.3.1
Environment: IE6, IE7, IE8, FF2, FF3.0.7, Safari 3.1, Opera 9.62, Chrome 1.0.154.43(3.3.1.BETA2)
Reporter: Mikhail Vitenkov
Assignee: Nick Belaevski
Use following code:
<rich:columns value="#{columns.data2}" var="d2"
index="index" rowspan="#{columns.rowspan}"
sortOrder="#{columns.orderings[index]}" sortBy="#{d1.str0}"
sortIconAscending="/pics/fatal.gif"
sortIconDescending="/pics/info.gif" >
<f:facet name="header">
<h:outputText value="header #{d2.int0}"></h:outputText>
</f:facet>
<h:outputText value="#{index}. "></h:outputText>
<h:outputText value="#{d1.str0}, "></h:outputText>
<h:outputText value="#{d2.str0}"></h:outputText>
<h:outputLink value="http://www.jboss.com/">
<f:verbatim>Link</f:verbatim>
</h:outputLink>
<f:facet name="footer">
<h:outputText value="footer #{d2.int0}"></h:outputText>
</f:facet>
</rich:columns>
Actual behavior:
Exception take place:
javax.faces.FacesException: /Columns/Columns.jsp(41,2) Unable to find setter method for attribute: sortIcon(the same exception for sortIconAscending and sortIconDescending).
--
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-6689) columnGroup: "filterValue", "filterMethod", "selfSorted", "sortOrder" attributes should be hidden.
by Mikhail Vitenkov (JIRA)
columnGroup: "filterValue", "filterMethod", "selfSorted", "sortOrder" attributes should be hidden.
--------------------------------------------------------------------------------------------------
Key: RF-6689
URL: https://jira.jboss.org/jira/browse/RF-6689
Project: RichFaces
Issue Type: Task
Affects Versions: 3.3.1
Environment: IE6, IE7, IE8, FF2, FF3.0.7, Safari 3.1, Opera 9.62, Chrome 1.0.154.43(3.3.1.BETA2)
Reporter: Mikhail Vitenkov
Assignee: Nick Belaevski
--
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-6832) ColumnsHandler swallows exceptions, hides major rendering issues
by Thomas W (JIRA)
ColumnsHandler swallows exceptions, hides major rendering issues
----------------------------------------------------------------
Key: RF-6832
URL: https://jira.jboss.org/jira/browse/RF-6832
Project: RichFaces
Issue Type: Patch
Reporter: Thomas W
The // TODO below has send me on a long search on why columns just did not render in the table.... A very simple change to either propagate the exception or log as error that will go a long way....
/*
* (non-Javadoc)
*
* @see org.richfaces.taglib.ComponentHandler#apply(com.sun.facelets.FaceletContext,
* javax.faces.component.UIComponent)
*/
//@Override
public void apply(FaceletContext ctx, UIComponent parent)
throws IOException, FacesException, ELException {
IterationContext iterationContext = new IterationContext();
iterationContextLocal.set(iterationContext);
clearOldColumns(ctx.getFacesContext(), parent);
prepare(ctx); // prepare data
try {
while (hasNext()) { // for each
exposeVariables(ctx);
handler.apply(ctx, parent);
next(ctx);
}
} catch (Exception e) {
// TODO: handle exception
} finally {
release();
unExposeVariables(ctx);
}
}
--
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