Hmm... no replies ... so does that mean that binding nested repeaters into 
beans is not possible???

Please anwser if there is a way to do it/know of any examples where it is done

Vica


Victoria Vitaver wrote:
Hi,

I'm trying to bind a nested repeater into a bean.

IE. I have something like

<fd:form>
<fd:widgets>
    <fd:field id="id1"><fd:datatype base="integer"/></fd:field>

    <fd:repeater id="one" >
      <fd:widgets>
        <fd:field id="id2"><fd:datatype base="integer"/></fd:field>

        <fd:repeater id="two">
           <fd:widgets>
            <fd:field id="id3"><fd:datatype base="integer"/></fd:field>
            <fd:field id="text"><fd:datatype base="string"/></fd:field>
           </fd:widgets>
        </fd:repeater>

       <fd:widgets>
    </fd:repeater>
</fd:widgets>
</fd:form>


eg Javabeans:

class mybean
{
    int mId1;
    List mOnes;   //list of items type mySecondBean
}

class mySecondBean
{
    int mId2;
List mTwos; // list of items type myThirdBean }

class myThirdBean
{
    int mId3;
    String mText;
}



And I would like to map it to the javabeans... is it possible? How would I go about it? If its not possible is there any way around it?



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

Reply via email to