Re: c:forEach issue in JSF 2

2015-07-01 Thread Felipe Jaekel
Hi khush, I had issues with c:forEach when I migrated from Mojarra to MyFaces. It was a plain html table similar to the example in your first message, and it worked correctly changing to ui:repeat, so I suggest you to try it. 2015-07-01 5:23 GMT-03:00 khush N : > Yep. I do have in my page. > >

Re: c:forEach issue in JSF 2

2015-07-01 Thread khush N
Yep. I do have in my page. On Wed, Jul 1, 2015 at 1:22 AM, l.pe...@senat.fr wrote: > On 01/07/2015 10:08, khush N wrote: > >> Hi, >> >> Thanks for the quick reply! >> >> Sorry, I do not have a sample project. But c:forEach aren't working on a >> simplest of page for me :( >> > Did you put your

Re: c:forEach issue in JSF 2

2015-07-01 Thread l.pe...@senat.fr
On 01/07/2015 10:08, khush N wrote: Hi, Thanks for the quick reply! Sorry, I do not have a sample project. But c:forEach aren't working on a simplest of page for me :( Did you put your code inside a ? Ludovic | | AVANT D'IMPRIMER, PENSEZ A L'ENVIRONNEMENT. |

Re: c:forEach issue in JSF 2

2015-07-01 Thread khush N
Hi, Thanks for the quick reply! Sorry, I do not have a sample project. But c:forEach aren't working on a simplest of page for me :( Thanks! On Wed, Jul 1, 2015 at 12:58 AM, l.pe...@senat.fr wrote: > On 01/07/2015 09:42, khush N wrote: > [...] > >> Can anyone please help me in understanding as

Re: c:forEach issue in JSF 2

2015-07-01 Thread l.pe...@senat.fr
On 01/07/2015 10:01, khush N wrote: Hi Thomas, Thank you for the quick reply! I am using JSF 2.2. As mentioned in my previous email, I have huge code base which is using c:forEach tag. So, it would be really great if I can figure out the real issue with c:forEach. If there is not other way to

Re: c:forEach issue in JSF 2

2015-07-01 Thread khush N
Hi Thomas, Thank you for the quick reply! I am using JSF 2.2. As mentioned in my previous email, I have huge code base which is using c:forEach tag. So, it would be really great if I can figure out the real issue with c:forEach. If there is not other way to make c:forEach work, I will have to sw

Re: c:forEach issue in JSF 2

2015-07-01 Thread Thomas Andraschko
Which version are u using? MyFaces 2.2 fixed many c:forEach issues. Maybe you should try to use ui:repeat instead c:forEach, too. You can google about the differences. 2015-07-01 9:42 GMT+02:00 khush N : > Hi, > > I am upgrading my application from JSF 1.2 to JSF 2. > > I am trying a below simpl

Re: c:forEach issue in JSF 2

2015-07-01 Thread l.pe...@senat.fr
On 01/07/2015 09:42, khush N wrote: [...] Can anyone please help me in understanding as to why the c:forEach tag is not working. I have huge code which is using forEach tag. With upgrade, I will have to remove every forEach if it is no more supported in JSF2 :( Thanks in advance! Do you have

c:forEach issue in JSF 2

2015-07-01 Thread khush N
Hi, I am upgrading my application from JSF 1.2 to JSF 2. I am trying a below simple forEach tag but it not showing anything inside the loop. test The value test is not showing up. Has the c:forEach implementai