Questions tagged [uirepeat]

JSF/Facelets component to iterate over a collection or array without generating markup.

The <ui:repeat> is a Facelets component which allows you to iterate over a collection or an array without generating any additional markup.

224 questions
0
votes
1 answer

PrimeFaces p:accordionPanel inside ui:repeat or c:forEach

I'm trying to create multiple accordionPanels. I tried to include this tag inside repeat elements (e.g. c:forEach). The accordionPanel is well rendered, but I'm unable to switch from one tab to another. These are some codes I tried:
Antonio Ragagnin
  • 2,278
  • 4
  • 24
  • 39
0
votes
2 answers

Jsf ui:repeat - method that populates the value is accessed even when submiting different form

In my actual project I have noticed that the method that populates the ui:repeat tag, is being invoked when there is a post call, even though the ui:repeat is not part of the submitted form. I have been trying to check againts the jsf documentation…
Sal81
  • 101
  • 1
  • 1
  • 7
0
votes
1 answer

JSF - Is it possible to list some bean attributes via reflection using c:forEach or ui:repeat?

Suppose I'd like to do something like this "fields"…
user1073494
0
votes
0 answers

Partial refresh of JSF page using ui:repeat and AJAX

I have a page say "Main Page" (Page 1) which looks like a Outlook calendar page having a large number of rows displayed using . Actually, the columns represent "Weeks" and the rows represent "Products". The functionality is that the user can choose…
user2228591
  • 115
  • 1
  • 1
  • 10
0
votes
0 answers

jsf ui:repeat var is null in nested ui:repeat after ajax call

I have a problem with nested ui:repeat. I have the next code: ... //cartItem info
dcalap
  • 1,048
  • 2
  • 13
  • 37
0
votes
2 answers

appears in resulting HTML

I am having a simple backing bean: @Named @RequestScoped public class BackingBean { public String[] getStorageLocations() { return new String[]{"0088", "0016", "0022"}; } } In the xhtml file I am using a tag to output the…
marius.7383
  • 159
  • 1
  • 12
0
votes
1 answer

how to render primefaces dynaform with ui-repeat,p:datalist

I'm trying to create multiple dynaforms in my page which will repeat multiple times by clicking button. To do this i've used ui-repeat but this is not displaying any dynaform at all.As an alternative solution i have used primefaces datalist(or…
udaykiran.nalla
  • 109
  • 1
  • 15
0
votes
0 answers

JSF tag ui:repeat causing high CPU utilisation

We use an application (using JSF2 (Mojara))that has some large pages using ui:repeat tag and which has been deployed on JBoss EAP 6.0 version. Of late, we have been facing very high CPU utilisation during our performance tests and the thread dumps…
user2228591
  • 115
  • 1
  • 1
  • 10
0
votes
1 answer

JSF2 ui:repeat inputText wont re-render on first try

I have a ui repeat that contains a inputtext and command button pairs. The button simply changes the value that the inputtext displays and re-renders it. On the first button click it changes the value but does not re-render on the screen. The…
0
votes
1 answer

Get values from separately

I am using Prime-faces to create drop downs in tag. I'm trying to get values of each drop down separately. The code I have tried:
Venkat Maridu
  • 892
  • 3
  • 22
  • 45
0
votes
2 answers
0
votes
1 answer

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 following:
0
votes
2 answers

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 problem is resolved
FERESSS
  • 137
  • 1
  • 5
  • 14
0
votes
1 answer

ui:repeat value expressions evaluated on every ajax call

I have test.xhtml with:
andrey.ladniy
  • 1,664
  • 1
  • 11
  • 27
0
votes
1 answer

command link doesn't work in ui:repeat

I have a inside a 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.
Ubaid Raja
  • 51
  • 1
  • 5
1 2 3
14
15