I've searched these forums looking for an answer to this question and was somewhat surprised I couldn't find anything. Would it be possible to have a loading animation display while the editor was loading as opposed to having a big white space. This would be extremely beatifically to users on slower connections because they have an indication that something is still loading.
Tue, 08/19/2008 - 13:47
#1
Re: Loading Animation
Re: Loading Animation
I'm using a workAround:
a) first, at the top of the textarea I'm adding a Div with a tex an some gif like "loading..."
<div id="board" style="position:absolute; left:10px">
<p><span class="style1">...Please wait a moment... the Editor is being loaded... <img src="/FCKEditor/editor/dialog/common/images/LoadingImg.gif">
</div>
b) there is a event called FCKeditor_OnComplete( EditorInstance ). Once the editor is fully loaded, this even take place. You can hide the Div then:
function FCKeditor_OnComplete( [nameoftheInstance] )
{ document.getElementById('board').style.visibility = 'hidden';}
Ha! remember also Hide the Div if the document is not being Edited.
Hope this helps
Re: Loading Animation