Hi ,
I am getting indent error in FCKeditor 2.6.5.When ever i increase or decrease the bullets i am getting this error.Please check the screen shot for details.If fix is avaiable , help me regarding this error
Message: 'indent' is null or not an object
Line: 83
Char: 3492
Code: 0
URI: file:///C:/FCKeditor_2.6.5/fckeditor/editor/js/fckeditorcode_ie.js
I am getting indent error in FCKeditor 2.6.5.When ever i increase or decrease the bullets i am getting this error.Please check the screen shot for details.If fix is avaiable , help me regarding this error
Message: 'indent' is null or not an object
Line: 83
Char: 3492
Code: 0
URI: file:///C:/FCKeditor_2.6.5/fckeditor/editor/js/fckeditorcode_ie.js
Re: Indent error in FCKeditor 2.6.5
I missed one line, please copy past the bullet list from the word document,as it is in error image.
Thanks in advance
Rajkumar C.P
Re: Indent error in FCKeditor 2.6.5
I am unable to attach the word document, from which i copied the Bullet list.
If anyone face error like this, intimate me.
thanks in advance
Re: Indent error in FCKeditor 2.6.5
There is one solution click the source and again click the source,now the indent is working properly.
But i need a fix, i called the source event in the insertHTML of the popup[ms word popup].
I am unable to attach the bullet list document.so i am attaching the doc as image.
Attachments:
Re: Indent error in FCKeditor 2.6.5
i found a fix for this issue.In fckeditorcode_ie.js replace this function.
FCKIndentCommand.prototype = {
Execute: function () {
FCKUndo.SaveUndoStep();
var A = new FCKDomRange(FCK.EditorWindow);
FCK.EditorWindow.document.execCommand(this.Name);
/*
A.MoveToSelection();
var B=A.CreateBookmark();
var C=FCKDomTools.GetCommonParentNode(A.StartNode||A.StartContainer,A.EndNode||A.EndContainer,['ul','ol']);
if (C) this._IndentList(A,C);
else this._IndentBlock(A);
A.MoveToBookmark(B);
A.Select();*/
FCK.Focus();
FCK.Events.FireEvent('OnSelectionChange');
},
Thanks
Rajkumar C.P