Hi All,
I have a RadComboBox that I need to cancel events on the client-side blur event. There are no javascript errors in Firefox. However, in IE I receive the following error:
Line: 498
Error: Object doesn't support property or method 'set_cancel'
The Java Script :
function onBlur(sender, eventArgs) {
eventArgs.set_cancel(true);
}
And the control:
<telerik:RadComboBox runat="server" ID="RadComboBox1" ToolTip="RadComboBox" Width="100px" DataSource="<%# Model.TestData%>" DataTextField="TestText" DataValueField="TestID" Skin="SampleSkin" EnableEmbeddedSkins="false" OnDataBound="RadComboBox1_DataBound" OnClientBlur="onBlur">
</telerik:RadComboBox>
Please assist.
Thanks,
Betty
I have a RadComboBox that I need to cancel events on the client-side blur event. There are no javascript errors in Firefox. However, in IE I receive the following error:
Line: 498
Error: Object doesn't support property or method 'set_cancel'
The Java Script :
function onBlur(sender, eventArgs) {
eventArgs.set_cancel(true);
}
And the control:
<telerik:RadComboBox runat="server" ID="RadComboBox1" ToolTip="RadComboBox" Width="100px" DataSource="<%# Model.TestData%>" DataTextField="TestText" DataValueField="TestID" Skin="SampleSkin" EnableEmbeddedSkins="false" OnDataBound="RadComboBox1_DataBound" OnClientBlur="onBlur">
</telerik:RadComboBox>
Please assist.
Thanks,
Betty