AW: AW: [Trinidad] How to use an iterator, selectOneChoice and partialTriggers?

2009-09-09 Thread Roeder, Andreas
tember 2009 16:45 An: MyFaces Discussion Betreff: Re: AW: [Trinidad] How to use an iterator, selectOneChoice and partialTriggers? Use immediate="true" --Omar On Sep 9, 2009, at 8:24 AM, "Roeder, Andreas" wrote: > Thanx a lot, that worked like a glue. Just one problem is

Re: AW: [Trinidad] How to use an iterator, selectOneChoice and partialTriggers?

2009-09-09 Thread Omar Elprince
on Betreff: Re: [Trinidad] How to use an iterator, selectOneChoice and partialTriggers? If you give partial triggers an EL expression it must evaluate to type String[]. The value change listener is fired for the current iteration, so if you click item 3, the event will be broadcast for the

AW: [Trinidad] How to use an iterator, selectOneChoice and partialTriggers?

2009-09-09 Thread Roeder, Andreas
e(); but no success. -Andreas -Ursprüngliche Nachricht- Von: Andrew Robinson [mailto:andrew.rw.robin...@gmail.com] Gesendet: Montag, 7. September 2009 02:46 An: MyFaces Discussion Betreff: Re: [Trinidad] How to use an iterator, selectOneChoice and partialTriggers? If you give partia

Re: [Trinidad] How to use an iterator, selectOneChoice and partialTriggers?

2009-09-06 Thread Andrew Robinson
If you give partial triggers an EL expression it must evaluate to type String[]. The value change listener is fired for the current iteration, so if you click item 3, the event will be broadcast for the selectOneChoice inside the index 2 of tr:iterator. To move the iterator to a new index you need

[Trinidad] How to use an iterator, selectOneChoice and partialTriggers?

2009-09-04 Thread Roeder, Andreas
I'm trying to create generic selectOneChoice elements. When the first selectOneChoice value changes it should update the next one in the list and so on. I tried to do that via the id, partialTriggers and a ValueChangeListener: But I cannot set the id of the selectOneChoice element. Wh