Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I've integrated Nicedit Rich Editor with my Moodle production site. My webpage has a textarea that is then overlayed by the Nicedit edit box (its own textarea). I have managed to create button ('toggleButton') that toggles between the Nicedit edit box and a normal HTML textarea ('peterText').

My main problem is that I want the normal HTML (no frills) textarea to appear first at the end of the page load, and for the toggling to work after that. Instead, the Nicedit edit box rests on top of the textarea after the page has loaded.

Why do I want this? I want the users to be presented with a no-frills, easy-and-straight-forward textarea to type in their answer. If they want to type in an input with a font colour or style or size, they can then click the toggleButton button and toggle between the Nicedit lots-of-icons textarea and the normal vanilla HTML textarea. Such is the method to my madness.

The normal textarea loads first, but does not sustain. It is immediately overlayed by the Nicedit edit box. But I want this textarea sustain, once the page loads.

The Nicedit always appears SECOND and then sustains (on top of the normal html textarea) once the page loads. I want the order to be reversed so that the user is always presented with the HTML textarea and can then decide if he/she wants to toggle between the two textareas (HTML textarea of Nicedit). Get it?

Live demo is at: http://www.moodurian.com/mod/resource/view.php?id=4267 Username: studentscm Password: studentscm

So, I want the Nicedit box to instantiate on top of the HTML textarea, then be removed, uncovering the HTML textarea. My core code is below. Can anyone help me with this? I'm going half crazy toggling to no avail. Yet. Thanks in advance.

<div id="wall_container">
<h4><?php echo stripslashes($desc);?></h4>
<form id="peter">
    <div>
       <textarea height="1000" cols="120" name="peterText" id="peterText" placeholder="Type a comment..." onkeydown="return catchTab(this,event)" ></textarea>
   </div>
</form>
<button style="float: left" name='toggleButton' id='toggleButton' onClick="toggleMode()">Toggle</button>
<input type="submit"  value=" Update "  id="button"  class="button"/>
</div>
<div style="clear: both;">
</div>

<script>

var area1;
function toggleMode() {
 //alert("area1 is "+area1);
 if(!area1) {
  area1 = new nicEditor({fullPanel : true}).panelInstance('peterText',{hasPanel : true});
  nicEditors.findEditor('peterText').setContent($("#peterText").val());
 } else {
  nicEditors.findEditor('peterText').saveContent();
  area1.removeInstance('peterText');
  area1 = null;
 }
}


bkLib.onDomLoaded(function() { 
 toggleMode();    //This line causes the the Nicedit Save icon to disappear! 
 //var btn = document.getElementById('toggleButton'); btn.click();
});
</script>
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.