Ext JS JavaScript DHTML



Hello World Window





Ext.onReady(function(){
  var example1 = new Ext.Panel({
    applyTo:'my',
    title:'Chapter 12: Example 2',
    width:250,
    height:250,
    frame:true,
    autoLoad:{
      url:'Example.cfc',
      params:{
        method:'yourName',
        returnFormat:'plain',
        id:1
      }
    }
  });
});