thank you !
----- Original Message ----- 
From: "Olivier Billard" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Tuesday, October 28, 2003 3:28 PM
Subject: Re: flowscript access to a widget in a repeater


> Hi Nicolas !
>
> The following code should work, to browse your
>
> Repeater transform = (Repeater)form.getWidget().getWidget("transform");
> for (var i=0 ; i<transform.getSize() ; i++) {
>      Field searchField = (Field) transform.getWidget(i, "search");
> ... do something with your widget...
> }
>
> --
> Olivier Billard
>
> On 28/10/2003 14:42, Nicolas Maisonneuve wrote:
>
> > hy,
> > my model is :
> > <wd:field id="index">
> >     <wd:label>Index :</wd:label>
> >     <wd:datatype base="string"/>
> >     <wd:selection-list src="cocoon:/list?list=index" dynamic="true"/>
> >     <wd:on-value-changed>
> >         <javascript>
> >         var value = event.source.value;
> >          /* var searchwidget= something to access to my searchwidget in
> > the repeater  */
> >
> > searchwidget.setSelectionList("cocoon:/list?list=search&amp;index=" +
> > value);
> >        </javascript>
> >     </wd:on-value-changed>
> >
> >  </wd:field>
> >
> >  <wd:repeater id="transform">
> >
> >   <wd:field id="search" required="true">
> >       <wd:label>Search field:</wd:label>
> >       <wd:datatype base="string"/>
> >       <wd:selection-list/>
> >    </wd:field>
> >  </wd:repeater>
> >
> > how acess to my searchfield ?
>
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to