Hi,
ArrayList is supported as datasource I assume so what's wrong in my code:
m_ViewTableValue = New LookupListColumn("Table", "ViewTable")
m_ViewTableValue.FitMode = ColumnFitMode.SmartFit
m_ViewTableValue.DropDownStyle = DropDownStyle.DropDownList
m_arr.AddRange(m_queries.GetSchemaTables())
m_ViewTableValue.LookupSource = m_arr
m_ViewTableValue.LookupBoundField = "table_name"
m_ViewTableValue.LookupDisplayField = "table_name"
dgDisplay.Columns.Items.Add(m_ViewTableValue)
m_arr is an arraylist and it contains correct values. But when I click on my lookuplist it is empty. What am I doing wrong?
Thanks