Hi there
I using the radgrid and i'm trying to change the readonly attribute in a cell in the code behind
I'm looping thru the griditm and would like to change the readonly
I using the radgrid and i'm trying to change the readonly attribute in a cell in the code behind
I'm looping thru the griditm and would like to change the readonly
For
Each grdItem As GridDataItem In radResourcesList.MasterTableView.Items
If TypeOf grdItem Is GridEditableItem Then
Dim editableItem As GridEditableItem = CType(grdItem, GridDataItem)
editableItem.Edit =
True
If bchange = true then
' I would like ot change the griditem("attend") readonly attibute from true ot false
End If
End If
Next
you help is appreciated
thanks
Tony