Rank: Newbie Groups: Member
Joined: 1/28/2011 Posts: 4
|
Can we add dynamic columns to the grid view if so can i have an example for it.
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
Hi, You would do something like this:
Code: C#
//Create a new column. There are different column types.
//Choose one fit your need
EO.Web.StaticColum column = new EO.Web.StaticColumn();
//Set column properties
.....
//Add it to the columns collection
Grid1.Columns.Add(column);
Thanks
|