I am trying to remove the curly red underlines for misspelled words and outlined here: Disable browser spellcheck and curly red underlines in RadEditor content area. But the OnClientLoad event never fires. There are no errors on the console log, the editor is enabled, and it is visible.
I'm a little stuck as to what else I can try.
<div class="SectionBody">
<telerik:RadEditor ID="redPlan" runat="server" SkinID="EditorDefault" Height="170" Width="500" OnClientLoad="OnClientLoad" />
<asp:CustomValidator ID="cvPlan" runat="server" ControlToValidate="redPlan" ClientValidationFunction="EditorRequired" ValidateEmptyText="true"
Text="Required" ValidationGroup="vgDAP" />
</div>
<telerik:RadScriptBlock runat="server">
<script type="text/javascript">
function OnClientLoad(sender, args) {
sender.get_contentArea().setAttribute("spellcheck", "false");
}
</script>
</telerik:RadScriptBlock>