Hi,
how to set specific column in gridview to read only and the other hand, other columns can be edited (editable)?
Programmatically please... :)
qiux sense: Hi, how to set specific column in gridview to read only and the other hand, other columns can be edited (editable)? Programmatically please... :)
gridColumn1.OptionsColumn.AllowEdit = false;
Cheers,Holger
thanks buddy, I get it already.. :)
Gridview1.Columns(2).OptionsColumn.Readonly=true
It can help me :)