jstl « RichFaces « JSF Q&A





1. row counter for html table row    stackoverflow.com

I have HTML table in JSF web application. I am generating rows dynamically using <ui:repeat>. I want a counter for each row. How can I get this? Any help? Ssimilar to rowKeyVar ...

2. rich:datatable rowspan issue    stackoverflow.com

I need to create a rich:dataTable (or even extended) with the following features: I have a class Company having a collection of Product objects. I want to show the following table:

3. c:forEach doesn't render inside rich:dataTable    stackoverflow.com

I am using c:forEach inside rich:dataTable. But c:forEach doesn't substitute the values for answer.choices variable and hence nothing is rendered. Is it wrong to use c:forEach inside a rich:dataTable? ...

4. Using a4j:repeat or ui:repeat inside rich:dataTable doesn't render radio buttons properly    stackoverflow.com

While using <c:forEach> the items values is not substituted properly. If i use <a4j:repeat> or <ui:repeat> instead of <c:forEach> inside a <rich:dataTable>, radio button is not rendering properly. I also found ...

5. c:forEach.items getting repetitively called    stackoverflow.com

Environment: Seam, Richfaces The following code snippet causes the method getUsers to be called multiple times, how do I avoid this in my application so that it gets called only once.

<c:forEach items="#{userHome.getUsers()}" ...

6. JSF : Changing component style in jstl c:foreach array not working    stackoverflow.com

This code displays an index and performs an action using RichFaces' <a4j:commandLink> tag. It works technically fine. Only the style of previously selected letter is not been reset (altough the appropriate ...

7. set width of a rich column on the fly?    stackoverflow.com

I'm trying to set the width of a rich column on the fly like:

<rich:column width="#{extraColumnWidth}">
where:
<c:set var="extraColumnWidth" value="#{document.instanceList.size() * 20}px"/>
But it does not work..i mean the width is not taken as it ...

8. jsf jstl problem    stackoverflow.com

When I try to run one of my jsf files (whom use a richfaces tag) I get the stack trace: (when I dont use richfaces tag libs it works just fine )

 ...

9. How to force the build phase in a JSF 1.2 page using JSTL?    stackoverflow.com

I am making use of JSTL tags in my JSF application. With certain actions, I need the component tree to be rebuilt as if it was an initial build. My current ...





10. How to pass parameters to ui:include that inside of c:forEach tag    stackoverflow.com

We are trying to create a list with iterating an entity with ui:include. my .xhtml file is like;

<c:forEach items="#{entityHome.list}" var="entityId">
    <ui:include src="/some.xhtml">
        ...

11. Problem with c:forEach inside rich:dataTable    stackoverflow.com

I have this page:

<?xml version='1.0' encoding='UTF-8' ?>
<!DOCTYPE composition PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<ui:composition xmlns:ui="http://java.sun.com/jsf/facelets"
    template="./templates/template.xhtml"
    xmlns:h="http://java.sun.com/jsf/html"
    xmlns:f="http://java.sun.com/jsf/core"
    xmlns:rich="http://richfaces.org/rich"
 ...

12. JSF - JSTL - Richfaces    coderanch.com

14. jsf richfaces rich calendar    java-forums.org