or
Protected Sub grdMaintReceived_ItemDataBound(sender As Object, e As Telerik.Web.UI.GridItemEventArgs) Handles grdMaintReceived.ItemDataBound
If TypeOf e.Item Is GridDataItem Then
Dim item As GridDataItem = DirectCast(e.Item, GridDataItem)
Dim deactivated As Boolean = DirectCast(item("deactivated").FindControl("checkDeactivated"), CheckBox).Checked
Dim contractBtn As LinkButton = DirectCast(item("service_provider_name").Controls(0), LinkButton)
If deactivated Then
contractBtn.Enabled = False
End If
End If
End Sub
Hello All
When you select a column in RadGrid as "read only" it will be hidden in Edit and Insert mode, I have a requirement to show it, but I don’t know how to do this with Ajax RadGrid? If I put the EditMode="InPlace"
It appear as label which is good but I wanted to use the EditMode="EditForms"
It I Use this it disappears, Can someone please update me how to resolve this issue. I don’t not want to use template column that will increase huge work on my end
Thanks in advance
Syed Qazafi