Just the title suggests, Firefox is turning <br> into two and two into four at each page submit. IE is fine. Default Content Filters are applied (or just not set) in this case. I am linking to a Tools File to add aditional Symbols and only use the Ajax Spellchecker as the tools for the editors.
Both styles of Javascript Event attaching yield the same result
Method 1: using OnClientSubmit="OnClientSubmit" to attach the JS
Method 2: using OnClientLoad="OnClientLoad" to attach the JS
Both styles of Javascript Event attaching yield the same result
Method 1: using OnClientSubmit="OnClientSubmit" to attach the JS
function OnClientSubmit(editor)
{
editor.fire(
"FormatStripper", { value: "ALL_NO_BRAKES" });
}
Method 2: using OnClientLoad="OnClientLoad" to attach the JS
function OnClientLoad(editor, args)
{
editor.add_submit(
function ()
{
editor.fire(
"FormatStripper", { value: "ALL_NO_BRAKES" });
});
}
I will be trying an update set of Controls, but the version of Telerik.Web.UI.dll used is 2009.3.1208.20.