Editable Datagrid DropDownList

A

anon

Hi All,
I have an editable datagrid in which one of the fields becomes a Drop
dowl list in edit mode....i followed the example in the $ guysfrom rolla
article
http://www.4guysfromrolla.com/webtech/050801-1.2.shtml
however one of them is not really populated from the database, and hence
no need of a dataview...i would like to assign an array or arraylist
alone to it, however it gives all sorts of errors....the code is as
follows

<asp:TemplateColumn HeaderText="Zone">
<ItemTemplate>
<asp:Label ID="lblZone" Runat="server">
<%# DataBinder.Eval(Container.DataItem,"cZone") %>
</asp:Label>
</ItemTemplate>
<EditItemTemplate>
<asp:DropDownList ID="ddl1" Runat="server"
DataTextField="c1Zone" DataSource="<%#zoned%>"></asp:DropDownList>
</EditItemTemplate>
</asp:TemplateColumn>


public void zone()
{
ArrayList zoned = new ArrayList();
zoned.Add("GMT-05:00(E.S.T)");
zoned.Add("GMT-04:00(Atlantic Time)");
zoned.Add("GMT+10:00(Australia)");
zoned.Add("GMT+05:30(Asia)");
zoned.Add("GMT-06:00(Central)");
zoned.Add("GMT-08:00(Pacific)");

}


Any ideas or links to articles will be helpful...
thanks
Ben
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,769
Messages
2,569,580
Members
45,053
Latest member
BrodieSola

Latest Threads

Top