Hi,
In each row of my RadGrid I have a CheckBox as shown below.
When the user checks the CheckBox system makes an ajax call from clientside and updates the database. This part is working fine.
I want change the row background color on check/uncheck of the CheckBox on clientside. Could not find a method to set background color on DataItem. Please help.
In each row of my RadGrid I have a CheckBox as shown below.
<
telerik:GridTemplateColumn
HeaderText
=
"Is Critical?"
HeaderButtonType
=
"TextButton"
UniqueName
=
"critical"
>
<
ItemTemplate
>
<
asp:CheckBox
ID
=
"chkCritical"
runat
=
"server"
/>
</
ItemTemplate
>
</
telerik:GridTemplateColumn
>
When the user checks the CheckBox system makes an ajax call from clientside and updates the database. This part is working fine.
I want change the row background color on check/uncheck of the CheckBox on clientside. Could not find a method to set background color on DataItem. Please help.