This issue occurs with the Telerik 2007.3.1425.35
I've tied a javascript function to the Grid OnRowSelecting client side event.
with the following script code.
The alert fires and displays the message, but the set_cancel fails with no method set_cancel on the eventArgs object.
<script type="text/javascript" language="javascript">
function RowSelecting(sender, eventArgs)
{
alert("Cancelling the Row Select!");
eventArgs.set_cancel(true); //cancel event
}
</script>
I've tied a javascript function to the Grid OnRowSelecting client side event.
with the following script code.
The alert fires and displays the message, but the set_cancel fails with no method set_cancel on the eventArgs object.
<script type="text/javascript" language="javascript">
function RowSelecting(sender, eventArgs)
{
alert("Cancelling the Row Select!");
eventArgs.set_cancel(true); //cancel event
}
</script>