GridcheckBox with ReadOnly=false is not working (unable to check/uncheck)
I have a few GridCheckBoxColumn inside a RadGrid. I have the ReadOnly property set to false but i cannot edit any of the checkboxes, that is I can neither check or uncheck them.
Anyone with any ideas as to why this is happening? Any comments/suggestions/ideas/correctiosn much appreciated as I'n new to the whole telerik markup.
Cheers,
Alan
</
telerik:RadToolBar
>
<
telerik:RadGrid
ID
=
"RadGrid3"
runat
=
"server"
OnNeedDataSource
=
"TelerikGridOnNeedDatasource"
DataSourceID
=
"dsActionProperties"
PageSize
=
"500"
>
<
MasterTableView
DataSourceID
=
"dsActionProperties"
AllowCustomSorting
=
"True"
>
<
Columns
>
<
telerik:GridBoundColumn
DataField
=
"Name"
HeaderText
=
"Action Name"
UniqueName
=
"Name"
SortExpression
=
"Action Name"
>
</
telerik:GridBoundColumn
>
<
telerik:GridBoundColumn
DataField
=
"ActionSourceID"
HeaderText
=
"Action Source"
UniqueName
=
"ActionSourceID"
>
</
telerik:GridBoundColumn
>
<
telerik:GridCheckBoxColumn
DataField
=
"IsStateChecked"
DataType
=
"System.Boolean"
HeaderText
=
"State Dependent"
UniqueName
=
"IsStateDependent"
ReadOnly
=
"false"
>
<
HeaderStyle
HorizontalAlign
=
"Center"
/>
<
ItemStyle
HorizontalAlign
=
"Center"
/>
</
telerik:GridCheckBoxColumn
>
<
telerik:GridCheckBoxColumn
DataField
=
"IsTypeDependent"
DataType
=
"System.Boolean"
HeaderText
=
"Type Dependent"
UniqueName
=
"TypeDependent"
>
<
HeaderStyle
HorizontalAlign
=
"Center"
/>
<
ItemStyle
HorizontalAlign
=
"Center"
/>
</
telerik:GridCheckBoxColumn
>
<
telerik:GridCheckBoxColumn
DataField
=
"Enabled"
DataType
=
"System.Boolean"
HeaderText
=
"Enabled"
UniqueName
=
"Enabled"
ReadOnly
=
"false"
>
<
HeaderStyle
HorizontalAlign
=
"Center"
/>
<
ItemStyle
HorizontalAlign
=
"Center"
/>
</
telerik:GridCheckBoxColumn
>
</
Columns
>
</
MasterTableView
>
</
telerik:RadGrid
><
br
/>
<
asp:ObjectDataSource
ID
=
"dsActionProperties"
runat
=
"server"
OldValuesParameterFormatString
=
"original_{0}"
SelectMethod
=
"GetAllActions"
TypeName
=
"DataSources.ActionsDS"
>
</
asp:ObjectDataSource
>