I want to show a CheckBox column without a box around it (just the tick or empty). But i am not sure how to style this. My GridviewCheckBoxColumn is readonly in this case so i want to just show a Tick mark when the file is true otherwise leave blank. Here is the code where i add the column to radgridview:
Please help
Thanks
Please help
Thanks
GridViewCheckBoxColumn colIsActive =
new
GridViewCheckBoxColumn(
"IsActive"
);
colIsActive .Width = 50;
colIsActive .HeaderText =
"Active"
;
colIsActive .ReadOnly =
true
;
colIsActive .WrapText =
true
;
//colIsActive .style???= no box around ???
_radGV.MasterTemplate.Columns.Add(colIsActive );