Re: Problem assiging elements in to list

2008-03-14 Thread Dave Newton
--- Cesar Arevalo <[EMAIL PROTECTED]> wrote: > when you say "All of this is done automatically by the framework" > do you mean if you populate from a form? Actually, let me re-answer that: yes, with caveats. For example, in the source provided the list isn't genericized, so without a type convers

Re: Problem assiging elements in to list

2008-03-14 Thread Dave Newton
--- Cesar Arevalo <[EMAIL PROTECTED]> wrote: > when you say "All of this is done automatically by the framework" > do you mean if you populate from a form? Yes. Dave - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional c

Re: Problem assiging elements in to list

2008-03-14 Thread Cesar Arevalo
ers Mailing List Sent: Friday, March 14, 2008 10:27:19 AM Subject: Re: Problem assiging elements in to list --- Cesar Arevalo <[EMAIL PROTECTED]> wrote: > by the time you get to the for loop I don't see the list initialized, > unless you are doing this from your jsp I don't thin

Re: Problem assiging elements in to list

2008-03-14 Thread Dave Newton
--- Cesar Arevalo <[EMAIL PROTECTED]> wrote: > by the time you get to the for loop I don't see the list initialized, > unless you are doing this from your jsp I don't think it will work as how > you have it, a better way would be with a normal for like this : > > for (int index = 0; in

Re: Problem assiging elements in to list

2008-03-14 Thread Cesar Arevalo
HI Vamsi, by the time you get to the for loop I don't see the list initialized, unless you are doing this from your jsp I don't think it will work as how you have it, a better way would be with a normal for like this : for (int index = 0; index < someLimit; index++) {