Ext JS JavaScript DHTML



Hello World Window






Ext.onReady(function() {
var myWin = new Ext.Window({
  height       : 200,
  width        : 400,
  border       : false,
  autoScroll   : true,
  id           : 'myWin',
  title        : 'A Column layout',
  layout       : 'column',
  defaults     : {
    frame : true
  },
  items        : [
    {
      title       : 'Col 1',
      id          : 'col1',
      columnWidth : .3
      
    },
    {
      title       : 'Col 2',
      html        : "20% relative width",
      columnWidth : .2
      
    },
    {
      title : 'Col 3',
      html  : "100px fixed width",
      width : 100
    },
    {
      title       : 'Col 4',
      frame       : true,
      html        : "50% relative width",
      columnWidth : .5
    }
  ]
  
});
myWin.show();
});
 
asdf