Get check box value : CheckBox « Dojo toolkit « JavaScript DHTML






Get check box value

 
<html>
  <head>
    <link rel="StyleSheet" type="text/css" href="js/dojo/dijit/themes/tundra/tundra.css">
    <script type="text/javascript">
      var djConfig = {
        baseScriptUri : "js/dojo/",
        parseOnLoad : true
      };
    </script>
    <script type="text/javascript" src="js/dojo/dojo/dojo.js"></script>
    <script>
            dojo.require("dijit.form.ToggleButton");
            dojo.require("dijit.form.CheckBox");
    </script>
  </head>
  <body class="tundra">
    <button dojoType="dijit.form.ToggleButton">asdf
     <script type="dojo/method" event="onChange" args="newValue">
       alert(dijit.byId("foo").getValue());
     </script>
    </button>
    <input id="foo" dojoType="dijit.form.CheckBox"></input>
     
</body>
</html>

   
  








Dojo-toolkit.zip( 3,849 k)

Related examples in the same category

1.CheckBox checked state
2.CheckBox onclick event
3.CheckBox preset value
4.Is checkbox checked
5.Precheck checkbox
6.Set checkbox value
7.dojo check box creation