I can't seem to have the checkbox column cells to display any text. Is it even possible? The code below does not work. The radcheckboxeditorelement does have a DisplayStyle property like the radcheckbox. Please advise. Do you I need to to do a custom celltype?
Private Sub RadGridView1_CellFormatting(sender As Object, e As Telerik.WinControls.UI.CellFormattingEventArgs) Handles RadGridView1.CellFormatting If e.Column.Name.ToUpper = "AGREE" AndAlso TypeOf e.CellElement Is GridCheckBoxCellElement Then CType(e.CellElement.Children(0), RadCheckBoxEditorElement).Text = "I Agree" End IfEnd Sub