Thanks for your reply but both frames I use contains documents from the same domain...So I think it may be the problem in setting the basepath where I have assigned it as relative path, but it works fine in its native frame but it couldn't display when it is accessed from the other frame...So we have solution for it??
When I wanted to add the fckeditor clone of right frame to left frame , I had to append the fckeditor instance in using leftFramObj.appendChild(rightFrameFCK);, but for some reason I was getting a invalid argument error in IE 7.
Also I got permission denied error and It was purely due to the url problem(Always keep in mind about the relative path you give for the basepath should always relative to the document URL where it is accessed ).So this problem got solved.
And about the IE error,instead of appendChild use innerHTML that will work like
RE: Accessing FCKeditor between frames
RE: Accessing FCKeditor between frames
Thanks for your reply but both frames I use contains documents from the same domain...So I think it may be the problem in setting the basepath where I have assigned it as relative path, but it works fine in its native frame but it couldn't display when it is accessed from the other frame...So we have solution for it??
RE:Resolvd Accessing FCKeditor between frames
When I wanted to add the fckeditor clone of right frame to left frame , I had to append the fckeditor instance in using leftFramObj.appendChild(rightFrameFCK);, but for some reason I was getting a invalid argument error in IE 7.
Also I got permission denied error and It was purely due to the url problem(Always keep in mind about the relative path you give for the basepath should always relative to the document URL where it is accessed ).So this problem got solved.
And about the IE error,instead of appendChild use innerHTML that will work like
leftFrameObj.innerHTML=rightFrameFCKParent.innerHTML;
Hope this will help you all.
regards,
Mehmood