Ext JS JavaScript DHTML



Hello World Window






Ext.onReady(function() {
    var myform = new Ext.FormPanel({ 
      url: 'your.php',
      renderTo: Ext.getBody(),
      frame: true,
      title: 'Title',
      width: 250,
      items: [
                {
            xtype: 'textfield',
            fieldLabel: 'Title',
            name: 'title',
            allowBlank: false,
            listeners: {
              specialkey: function(f,e){
                if (e.getKey() == e.ENTER) {
                    alert("about to submit");
                  myform.getForm().submit();
                }
              }
            }
            }
        ]
    });
});
 
asdf