Hi,
I need to add a Telerik drop down to a Telerik grid at run time. How do I do this in C#?
I am populating my grid like this, it has 3 columns:
// Column headings
dt.Columns.Add(new DataColumn("Client"));
dt.Columns.Add(new DataColumn("Invoice No"));
dt.Columns.Add(new DataColumn("Action"));
I populate my rows like this (only for test puposes for now):
// Rows
dt.Rows.Add(new object[] { "12345", "123" });
dt.Rows.Add(new object[] { "23456", "234" });
As you will see it only adds for column 1 and 2. Column 3 needs a Telerik drop down. How do I add it dynamically?
Thanks
Brendan
I need to add a Telerik drop down to a Telerik grid at run time. How do I do this in C#?
I am populating my grid like this, it has 3 columns:
// Column headings
dt.Columns.Add(new DataColumn("Client"));
dt.Columns.Add(new DataColumn("Invoice No"));
dt.Columns.Add(new DataColumn("Action"));
I populate my rows like this (only for test puposes for now):
// Rows
dt.Rows.Add(new object[] { "12345", "123" });
dt.Rows.Add(new object[] { "23456", "234" });
As you will see it only adds for column 1 and 2. Column 3 needs a Telerik drop down. How do I add it dynamically?
Thanks
Brendan