Use checkbox group to hold the check boxes : CheckBox « Ext JS « JavaScript DHTML






Use checkbox group to hold the check boxes

  

<html>
<head>
<title>Hello World Window</title>
<link rel="stylesheet" type="text/css" href="ext-3.0.0/resources/css/ext-all.css" />
<script type="text/javascript" src="ext-3.0.0/adapter/ext/ext-base.js"></script>
<script type="text/javascript" src="ext-3.0.0/ext-all.js"></script>

</head>
<body>
<script type="text/javascript">
Ext.onReady(function() {
    Ext.QuickTips.init();
    
    var checkboxes = {
      xtype      : 'checkboxgroup',
      fieldLabel : "Choices",
      defaults : {
        bodyStyle      :   'background-color: #DFE8F6;',
      },      
      anchor     : '100%',
      items      : [
        {
          boxLabel   : 'A',
          inputValue : 'a'
        },
        {
          boxLabel   : 'B',
          inputValue : 'b'
        },
        {
          boxLabel   : 'C',
          inputValue : 'c'
        },
        {
          boxLabel   : 'D',
          inputValue : 'd'
        }
      ]
    }
        
    new Ext.Window({
      title      : 'Available choices',
      layout     : 'form',
      labelWidth : 50,
      height     : 90,
      width      : 320,
      bodyStyle  : 'padding: 5px',
      items      : checkboxes
    }).show();
});
</script> 
<div id='div1'>asdf</div>
</body>
</html>

   
    
  








Related examples in the same category

1.Add check boxes to form panel
2.Add checkbox to FormPanel
3.CheckBox cell editor