The following code worked for RadEditor In Promethues (2007.3.1425)
function OnClientLoad(editor, args)
{
var filter = editor.get_FiltersManager();
filter.getFilterByName("ConvertFontToSpanFilter").Enabled = false;
filter.getFilterByName("FixUlBoldItalic").Enabled = false;
}
I am getting the following error in (2008.1.415)
Microsoft JScript runtime error: Object doesn't support this property or method
Is there a new method for accessing the FiltersManager? Or for turning off these filters.
