Hi,
I'm using a grid control with a GridClientSelectColumn and I'm trying to prevent the whole row being set to the selected item backcolor. I just need to have the checkbox checked.
I thought I could do this by using the ClientEvents OnRowCreated. However, when I do this I get the error
"Microsoft JScript runtime error: 'RowCreated' is undefined"
I have tried putting the script into a RadScriptManager but it makes no difference.
The code I have is:
<
script type="text/javascript">
function RowCreated(sender, eventArgs) {debugger;}
</script>
The grid's client settings are:
<ClientSettings>
<Selecting AllowRowSelect="True" EnableDragToSelectRows="False" />
<ClientEvents OnRowCreated="RowCreated"></ClientEvents>
</ClientSettings>
Do you have any suggestions?
Thanks,
Kelvin