Ext JS JavaScript DHTML



Hello World Window






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();
});
 
asdf