I meant me entering them in manually in my 12 DropDownList controls (6 in
read, 6 in edit).
> Assign them to the ItemList, and reuse it over and over again,
> I am not asking your user to manually enter anything.
[quoted text clipped - 26 lines]
>>>>
>>>> David
IfThenElse - 11 Oct 2007 22:41 GMT
all you need is to clone and use the ItemsList.
Or I just don't understand what you want?
I had a dropdown list in every row, possibly 25 ( using paging and depending
on page size )
I just clone and reuse my collectionList that holds my items to the dropdown
list
>I meant me entering them in manually in my 12 DropDownList controls (6 in
>read, 6 in edit).
[quoted text clipped - 29 lines]
>>>>>
>>>>> David
David C - 11 Oct 2007 23:16 GMT
I haven't cloned an ItemList before. How is that done?
> all you need is to clone and use the ItemsList.
> Or I just don't understand what you want?
[quoted text clipped - 37 lines]
>>>>>>
>>>>>> David
IfThenElse - 12 Oct 2007 00:23 GMT
You can bind to the same collection and might not need Cloning.
or
Some classes provide the Clone Method for you. Like
ArrayList al = new ArrayList();
ArrayList al2 = null;
al2 = al.Clone();
When the Clone Method does not exist then create one yourself.
create an ItemsListCollection object, or what ever collection you want,
then call a Private method you created to populate it from another like
object. That is cloning.
You can use an ArrayList may be to bind to as above.
>I haven't cloned an ItemList before. How is that done?
>
[quoted text clipped - 39 lines]
>>>>>>>
>>>>>>> David
David C - 12 Oct 2007 14:54 GMT
Thank you.
> You can bind to the same collection and might not need Cloning.
>
[quoted text clipped - 60 lines]
>>>>>>>>
>>>>>>>> David