Hello;
We are facing a weird behavior with rad editor which happens on a some machines on different enviroment than development.
am getting the following javascript error message:
Message: Object doesn't support this action
Line: 5
Char: 32749
Details:
i have a rad editor that have the following properties:
<
rad:RadEditor
ID
=
"EmailBody"
runat
=
"server"
Width
=
"100%"
ToolsFile
=
"~/_CSS/EditorBasicTools.xml"
OnClientLoad
=
"EmailBody_OnClientLoad"
StripFormattingOptions
=
"NoneSupressCleanMessage"
Skin
=
"Default"
SpellCheckSettings-DictionaryPath
=
"~/App_Data/RadSpell/"
SpellCheckSettings-DictionaryLanguage
=
"en-US"
EditModes
=
"Design"
ContentFilters
=
"RemoveScripts, FixUlBoldItalic, FixEnclosingP, IECleanAnchors, MozEmStrong, IndentHTMLContent, EncodeScripts, OptimizeSpans"
>
<
ContextMenus
>
<
rad:EditorContextMenu
Enabled
=
"false"
TagName
=
"IMG"
>
</
rad:EditorContextMenu
>
<
rad:EditorContextMenu
Enabled
=
"false"
TagName
=
"A"
>
</
rad:EditorContextMenu
>
</
ContextMenus
>
</
rad:RadEditor
>
Do you have any ideas why this happening to me
Am using 2011.3.1305 telerik controls version with IE Browser.
Hello;
We are facing a weird behavior with rad editor which happens on a some machines on different enviroment than development.
am getting the following javascript error message:
Message: Object doesn't support this action
Line: 5
Char: 32749
Details:
i have a rad editor that have the following properties:
<
rad:RadEditor
ID
=
"EmailBody"
runat
=
"server"
Width
=
"100%"
ToolsFile
=
"~/_CSS/EditorBasicTools.xml"
OnClientLoad
=
"EmailBody_OnClientLoad"
StripFormattingOptions
=
"NoneSupressCleanMessage"
Skin
=
"Default"
SpellCheckSettings-DictionaryPath
=
"~/App_Data/RadSpell/"
SpellCheckSettings-DictionaryLanguage
=
"en-US"
EditModes
=
"Design"
ContentFilters
=
"RemoveScripts, FixUlBoldItalic, FixEnclosingP, IECleanAnchors, MozEmStrong, IndentHTMLContent, EncodeScripts, OptimizeSpans"
>
<
ContextMenus
>
<
rad:EditorContextMenu
Enabled
=
"false"
TagName
=
"IMG"
>
</
rad:EditorContextMenu
>
<
rad:EditorContextMenu
Enabled
=
"false"
TagName
=
"A"
>
</
rad:EditorContextMenu
>
</
ContextMenus
>
</
rad:RadEditor
>
Do you have any ideas why this happening to me
Am using 2011.3.1305 telerik controls version with IE Browser.
GridColumnCollection cols = grid.MasterTableView.Columns; GridColumn c = cols.FindByUniqueName(columnName); if (c != null){ int start = c.OrderIndex; for (int i= start; i < cols.Count; i++) { c = cols[i]; if (i < cols.Count - 1) c.OrderIndex = i+1; else c.OrderIndex = start; } } the above code doesn't work when reordering columns through server side. I have written the above code in pageload event . I also tried by setting the various properites like ReorderColumnsOnClient=false but it doesn't work . Kindly suggest alternatives