Is it possible to put some kind of text on GridClientSelectColumn's header? HeaderText doesn't do anything.
I already have this code to hide the checkbox.
Private Sub RadGridAttachment_ItemDataBound(ByVal sender As Object, ByVal e As Telerik.Web.UI.GridItemEventArgs) Handles RadGridAttachment.ItemDataBound
'Hide the client side checkbox in the header
If TypeOf e.Item Is GridHeaderItem Then
Dim header As GridHeaderItem = DirectCast(e.Item, GridHeaderItem)
header("ClientSelectColumn").Controls(0).Visible = False
End If
End Sub
I already have this code to hide the checkbox.
Private Sub RadGridAttachment_ItemDataBound(ByVal sender As Object, ByVal e As Telerik.Web.UI.GridItemEventArgs) Handles RadGridAttachment.ItemDataBound
'Hide the client side checkbox in the header
If TypeOf e.Item Is GridHeaderItem Then
Dim header As GridHeaderItem = DirectCast(e.Item, GridHeaderItem)
header("ClientSelectColumn").Controls(0).Visible = False
End If
End Sub