My aspx page has
<telerik:GridClientSelectColumn Reorderable="False" UniqueName="ClientSelectColumn">
<HeaderStyle Width="20px"></HeaderStyle>
</telerik:GridClientSelectColumn>
In my code behind, I want to initialy check some rows. How do I code this?
The following code does not produce an error, but nothing is checed when the page is displayed
(I've tried this the following events: ItemDataBound, ItemCommand, and PreRender
Dim chkClientSelectColumn As CheckBox = DirectCast(item.FindControl("ClientSelectColumnSelectCheckBox"), CheckBox)
chkClientSelectColumn.Checked = True