Ext JS JavaScript DHTML



Hello World Window






Ext.onReady(function() {
    Ext.QuickTips.init();
    
    var dateField = {
       xtype      : 'timefield',
       fieldLabel : "Time",
       anchor     : '100%'
    }
       
    new Ext.Window({
       title      : 'Title',
       layout     : 'form',
       labelWidth : 100,
       height     : 70,
       width      : 250,
       bodyStyle  : 'padding: 5px',
       items      : dateField
    }).show();
});
 
asdf