I am trying to get the value of dojo editor and append it to the hidden input. This code:

onClick="dojo.byId('editorContent').value = this.getValue() 

works correctly if i put it in the div of the editor. However i want to update before send the form the hidden input. I already tried with onclick and onsubmit but didn't works. Probably this is wrong :

content.getValue()   

code

<form>  
  <div id="descricao_oferta">
        <input type="hidden" name="item[editorContent]" id='editorContent' />
        <div dojoType="dijit.Editor" id="content" height='200px'">
        <?php echo isset($arr['conteudo']) ? $arr['conteudo'] : "Descrição";?>
    </div>
<form>

    <input id="send" name="send" type="submit" value="Registo" onClick="dojo.byId('editorContent').value = content.getValue()"/>

</form>

How can i update the hidden input with the content of the editor when submit the form ?

similar problem

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

source

this is the correct way:

onClick="dojo.byId('editorContent').value = dijit.byId('content').get('value')"
link|improve this answer
feedback

Shouldn't it be dijit.Editor.get('value'); to get the value from the editor?

http://dojotoolkit.org/documentation/tutorials/1.6/editor/

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.