Adding check box to data grid custome control.
Hi,
i am using custome data grid control, which does not have the coloumn
tag i.e property
so i can't add rows explicity in aspx file. i also tried this
DataColumn dcSelect = new DataColumn("Select");
dcSelect.DataType = System.Type.GetType("System.Boolean");
and add new row value as
dr["Select"] = false ;
dtAgentBasedMonitor.Rows.Add(dr);
but it's not working as displaying only true or false when i assing
new row.
can anyone konw another way?
Date:Sat, 11 Aug 2007 06:31:56 -0700
Author:
|