Dojo Dijit and HTML5 in Real world applications/Dijit/dijit.byId: Difference between revisions

From PMISwiki
Jump to navigation Jump to search
(Created page with "==Template== ==How to use== ==Tips and tricks== dijit.byId would not work on HTML elements not specified as an dijit element: <code lang="html5"> <script type="text/javascript"...")
 
No edit summary
Line 1: Line 1:
==Template==
==dijit.byId==


==How to use==
==How to use==
Line 5: Line 5:
==Tips and tricks==
==Tips and tricks==
dijit.byId would not work on HTML elements not specified as an dijit element:
dijit.byId would not work on HTML elements not specified as an dijit element:
<code lang="html5">
<source lang="html5">
<script type="text/javascript">
<script type="text/javascript">
dijit.byId('s21').set('value', 'New value for text field') );
dijit.byId('s21').set('value', 'New value for text field') );
Line 14: Line 14:
    data-dojo-type="dijit.form.TextBox"
    data-dojo-type="dijit.form.TextBox"
             data-dojo-id="s20" >     
             data-dojo-id="s20" >     
</code>
</source>


====Verified in====
====Verified in====

Revision as of 20:02, 19 September 2011

dijit.byId

How to use

Tips and tricks

dijit.byId would not work on HTML elements not specified as an dijit element:

<script type="text/javascript">
dijit.byId('s21').set('value', 'New value for text field') );
</script>

<!-- Remember to declare the destination as a data-dojo-type -->
<input type="text"  id="s21" name="result"
	     data-dojo-type="dijit.form.TextBox"
             data-dojo-id="s20" >

Verified in

IE 8, Firefox 3.6.22, Dojo 1.6.1

References

Demo: Use of dijit.byId