JSF/Facelets component to iterate over a collection or array without generating markup.
0
votes
1answer
57 views
jsf2 ui:repeat alternate row color
Using varStatus of ui:repeat is helpful to identify the odd and even rows if I display all the records in the list that is mapped to ui:repeat.
However, how do I handle a situation if I choose to ...
0
votes
1answer
67 views
ajax calls do not reRender when the page has nested ui:repeat [JSF1.2]
I have a page that have 2 ui:repeat to iterate a complex collection. I need add commandlinks that will update some of the data on the page without refresh the whole page. The code is like the ...
0
votes
2answers
52 views
ui:repeat and c:foreach dont return the same organisation
I have a loop that contains a list of properties
I would like to display this list on 2 columns, but I can not.
they are displayed by unordered, against if I use c: For Each place of ui: repeat
the ...
1
vote
0answers
249 views
f:ajax on h:selectManyCheckbox not working inside ui:repeat: cannot find component
I have the following problem: I am using a h:selectManyChecbox inside a ui:repeat. A value change listener is attached to the component, as well as a f:ajax. I want the event to be triggered on each ...
0
votes
1answer
114 views
ui:repeat value expressions evaluated on every ajax call
I have test.xhtml with:
<h:form id="formProduct" >
<h:panelGroup id="filterProductTotal" layout="block">
<h:outputText ...
0
votes
0answers
113 views
Showing messages for input fields inside a repeat component when the form is submitted using Primefaces
I am developing a form using PrimeFaces 3.5 as part of a Java EE 6 web application (JSF 2.1) hosted on Glassfish 3.1. More specifically, the user can insert multiple email addresses even if at least ...
0
votes
1answer
99 views
Dynamically generate rich menuitems inside rich context menu
I am trying to dynamically generate rich menu items inside a rich context menu component. Here is my code:
<ui:repeat var="group" value="#{myBean.groups}" >
<div align="center">
...
0
votes
1answer
106 views
How to add id(s) to primefaces components dynamically?
I have a requirement where I need to display components on the form which will be retrieved from the database. I am able to show the components with the help of datatable and ui repeat. I also need to ...
1
vote
1answer
265 views
How to use <ui:repeat> to iterate over a nested list?
Using JSF 2.0, I need to display a table wherein each row contains a link which opens a popup. I have two models: A which has id and List<B> properties and B which has id and name properties. In ...
2
votes
1answer
89 views
Using f:validateLongRange in ui:repeat
I'm using com.sun.faces version 2.1.18. In my application I have a dynamic list of questions. I use <ui:repeat> to render each question. Depending on the type of question I render a type of ...
0
votes
0answers
115 views
command link doesn't work in ui:repeat
I have a <p:commandLink> inside a <ui:repeat> in my xhtml page, my bean scope is set to 'View'. I am using JSF2.0 with primefaces 3.4. Here is the code snippet.
<ui:repeat ...
0
votes
1answer
125 views
Collection of selectManyCheckbox inside a ui:repeat knows which element of the repeater it belongs to
I am developing a web app using JSF 2.
My web app among other things contains a series of questions put one at a time (so one question is visible at a time) and have multiple answers (I use ...
0
votes
0answers
40 views
commandlink action inside of ui:repeat is not working. (jsf 2) [duplicate]
I have a command link component inside of a nested <ui:repeat>,
<ul>
<ui:repeat var="father" value="#{miuchile3.getMenusPadre(miuchile3.keyModulo)}" >
<li>
...
0
votes
1answer
296 views
nested ui:repeat issue (or f:ajax)
i have 2 ui:repeat nested like this:
<ui:repeat var="father" value="#{miuchile3.getMenusPadre(miuchile3.keyModulo)}" >
<li>
<h:commandLink ...
0
votes
1answer
444 views
Jsf ui:repeat size doesn't gets java bean value
JSF 2.0's ui:repeat tag gets the value of java bean(arraylist) as it's value property but size property doesn't. I am using the ui repeat inside of a datatable which shows statuses iteratively and ui ...
1
vote
2answers
849 views
JSF 2 dataTable row index without dataModel
I've been using ui:repeat to generate tables. With ui:repeat it's easy to get the rows numbered using the varStatus. I'm depending on the row id's from varStatus when calling the backing bean to ...
1
vote
0answers
141 views
ui:repeat strange behaviour
<ui:repeat> is showing a strange behaviour. I am showing some textfields and a delete link in <ui:repeat>. When delete link is clicked, the correct row is being deleted from backend, but ...
0
votes
1answer
61 views
rich:column is generating extra td element
Hi Iam using rich:dataTable to display elements which is of type List of type MyClass.
<rich:dataTable value="#{myBean.myClassList}"> var="item"
<rich:column>
<h:outputText ...
2
votes
1answer
187 views
Magic ui:repeat var
I have stumbled upon an, at least for me, unexpected behaviour. When using an ui:repeat, it seems I can access the var from outside.
Code - Page:
<f:metadata>
<f:event ...
0
votes
0answers
144 views
how to get individual components inside <ui:repeat>?
I am using <ui:repeat> to generate a table row with a delete button and output text.
xhtml page-
<td><h:inputText value="#{spocBean.pocbuName}" id="pocbuadd" ...
0
votes
0answers
54 views
Overlapping ui:repeat elements
In a dialog my ui repeat elements are overlapping.
I tried to add a p:scrollPanel out of ui repeat but , they are still one over one.
<p:scrollPanel >
<ui:repeat ...
0
votes
1answer
299 views
p:commandlink inside ui:repeat
In our application we are displaying the menus dynamically. We have the menu object(menuitems in below code) populated with all the menu items (read from an xml). The home page then generates the ...
2
votes
0answers
119 views
JSF2 ui:repeat nullpointerexception on development stage
I have an issue (no big deal but wanted to see if anybody else had seen it) where I have an structure like the one below:
<ui:repeat var="categoria"
value="#{newsletterPage.categoriasNewsletter}" ...
0
votes
0answers
84 views
Accessing ui:repeat var item through javascript
I am having ui:repeat to iterate through the list of custom components. And I need javascript to read the custom component attributes as below:
<ui:repeat var="col" value="#{cc.children}" ...
0
votes
0answers
148 views
ui:repeat value expressions evaluated during render response regardless of rendered attribute of a parent component
We are migrating an old Seam webapp (Seam 2.2, JSF 1.2, JBoss 5.1) to JBoss 7.1 (Seam 2.3, JSF 2.0) and facing this srange problem:
All the EL expressions as value of <ui:repeat> within ...
2
votes
1answer
357 views
Composite component in ui:repeat vs c:forEach using ajax calls
I have a composite component, which represents an item that will be stored in a list. I would like to display these items using <ui:repeat>, but I have problems making ajax calls. The thing is ...
0
votes
2answers
365 views
How to populate an arraylist in panelGrid of JSF 2.0?
I have a problem in jsf panelgrid while populating data from arraylist.. I'm getting error as javax.el.PropertyNotFoundException: /facelet/crew/searchCrew.xhtml @14,95 ...
2
votes
2answers
207 views
How to address a component inside a looping naming container
I have the following structure (contents and attributes omitted):
<ui:repeat id="outerlist">
<my:compositeComponent id="myCC">
<h:panelgroup id="container">
...
0
votes
1answer
1k views
PrimeFaces ui repeat + infinite scrolling
I have a primefaces "grid panel" template and i'm filling it's columns from database via java classes. And i've to show lots of clones of that panel but surely they full with different info. For ...
1
vote
1answer
161 views
JSF File upload in ui:repeat
I have a UI that has options to upload multiple documents of specific natures to an issue. I am able to upload a single file without problems throughout the rest of my application.
Environment
...
1
vote
1answer
121 views
How can I set numbers within IDs dynamically in JSF
I design a JavaEE website with the help of JSF2 and Facelets. The code beyond is just an example how the JSF-Code looks like.
When the user of the website wants to create new users but forgets to set ...
1
vote
1answer
461 views
f:ajax does not update ui:repeat
My JSF page is like this, The <f:ajax> part does now work.
<h:selectOneListbox value="#{category.categoryId}">
<f:selectItems value="#{category.allSubCategories}" var="c" ...
1
vote
0answers
209 views
Does ui:repeat require unique var names?
First, let me explain the structure. I have some JSF Facelets pages, which use a template to provide a common header with dynamically generated menus. Within that template, the menus are generated ...
1
vote
1answer
709 views
JSF ui:repeat with render
I want to use a ui:repeat or any other iterative tag to display a number of components once
for each item in an Array list.
<!-- print multiple mandates -->
<ui:repeat id="mandates" ...
0
votes
0answers
778 views
Slidesjs — showing dynamic images (DefaultStreamedContent) with uirepeat in carousel
I am using http://slidesjs.com/examples/images-with-captions/ carousel on my web-page, but I am having trouble with showing dynamic images in carousel.When I debug, I see that it gets the images but ...
1
vote
1answer
366 views
How can I show my 2D arrayList using the <ui:repeat> in JSF
I can show the objects of the plain arrayList.
ArrayList<Object>names;
<ui:repeat value="#{bean.names}" var="t">
<ul>
...
0
votes
0answers
731 views
JSF ui:repeat in h:dataTable with taglib function in h:dataTable value attribute
Could someone explain the following behavior?
(Glassfish 3.1.2, Servlet 3.0, JSF 2.1)
I am using <ui:repeat> inside a <h:dataTable> with a value attribute containing a taglib function, ...
0
votes
0answers
292 views
JSF graphicImage
I have to do a list of images. I use ui:repeat to do this, but it doesn't work and I can't see the images:
<ui:repeat value="#{mybean.album.images}" var="image">
<p:graphicImage ...
0
votes
0answers
536 views
Iterating List of Lists in JSF view
I'm trying to iterate a List> on my JSF view using ui:repeat tags. It looks like this:
<h:form>
<ui:repeat value="#{myController.currentEntry.pages}" var="page" varStatus="pageStatus">
...
0
votes
0answers
122 views
resolving ui:repeat value inside a ComponentHandler
I'm trying to create custom component based on attributes like "datatype", "label". Depending on different "datatype" value, I compose the custom component with a couple different JSF components.
For ...
1
vote
1answer
207 views
ui repeat separator char
Using jsf2 (see maven dependencies)
<dependency>
<groupId>com.sun.faces</groupId>
<artifactId>jsf-impl</artifactId>
...
0
votes
0answers
237 views
Pass parameter to a dialoggrid from another dialoggrid in the same page
I've message in an xhtml page of course bound with a bean.
Now the messages are in a list, and i'm using ui:repeat to display the message and all that.
Now when i open a message, there's a reply ...
2
votes
1answer
2k views
JSF h:selectBooleanCheckbox inside ui:repeat - varStatus.index works, var doesn't
Can someone please explain this phenomenon?
I am using Mojarra 2.1.6 - Glassfish 3.1.2.
I have a checkbox inside a ui:repeat. The ui:repeat is looping over a list of booleans from my managed bean. ...
0
votes
1answer
179 views
ui:repeat inside composition not printing values
I am new to jsf. I have the bellow code. When I place ui:repeat inside rich:toolbar it prints the data. But when I place it after the toolbargroup inside composition tag it doesn't print anything. I ...
0
votes
1answer
308 views
Inside JSF ui:repeat confirmdialog takes the id of the last element in the list
I've this command button
<p:commandButton onclick="confirmation1.show()"
id="delFriend" title="Delete ...
1
vote
1answer
227 views
UI:repeat does not increment the id of table row
In JSF 2 (SUN RI ) UI:repeat does not increment the id of table row when new rows are added. It does display all rows on browser. However, view source reveals only one row.
<ui:repeat id="repeat1" ...
1
vote
2answers
747 views
Expose items of a list while iterating within composite component
I'm iterating over a list of items in composite component. I want to expose each item of the list so that they could be used within the child component of this composite component, to create a ...
0
votes
2answers
482 views
f:ajax not working as expected for h:selectOneRadio inside ui:repeat
I have a , to render a table, which has a radio button.
i.e. , on selection of radioButton, i would like to re-render the whole form.
but which is not working.
Here is my code:
<h:form ...
0
votes
1answer
353 views
Jquery new message slide down in a list of messages
I've a list of messages in the backing bean which i'm using in a ui:repeat tag to display on the xhtml page.
<?xml version='1.0' encoding='UTF-8' ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML ...
0
votes
2answers
412 views
p:dialog in ui:repeat
I'm showing messages from a list in my backing bean in xhtml jsf page.
I'm using ui:repeat for the loop and a reply button for each message.
on the reply button, i'm calling a dialog box in which i'm ...



