Hi,
I have this grid:
I'm trying to add an event to update other elements (checkboxes and textboxes) in the page on row selection using the ClientEvents OnCellSelected (I've commented it), but when I uncomment this part of code I cannot select any rows anymore and no event is firing.
Any suggestions?
Thx
I have this grid:
<
asp:updatepanel
runat
=
"server"
>
<
ContentTemplate
>
<
telerik:RadGrid
ID
=
"actGrid"
runat
=
"server"
AllowFilteringByColumn
=
"True"
AllowSorting
=
"True"
CellSpacing
=
"0"
CssClass
=
"gridBlock"
GridLines
=
"None"
AutoGenerateColumns
=
"false"
AllowPaging
=
"true"
ShowHeader
=
"True"
>
<
ClientSettings
>
<%--<
ClientEvents
OnCellSelected
=
"OnRowSelection"
/>--%>
<
Selecting
AllowRowSelect
=
"True"
/>
</
ClientSettings
>
<
PagerStyle
Mode
=
"NumericPages"
></
PagerStyle
>
<
MasterTableView
TableLayout
=
"Fixed"
PageSize
=
"5"
>
<
Columns
>
<
telerik:GridBoundColumn
ItemStyle-Font-Bold
=
"true"
DataField
=
"Description"
/>
</
Columns
>
</
MasterTableView
>
</
telerik:RadGrid
>
</
ContentTemplate
>
</
asp:updatepanel
>
I'm trying to add an event to update other elements (checkboxes and textboxes) in the page on row selection using the ClientEvents OnCellSelected (I've commented it), but when I uncomment this part of code I cannot select any rows anymore and no event is firing.
Any suggestions?
Thx