Ext JS JavaScript DHTML



Hello World Window





Ext.onReady(function(){
  var formPanel = new Ext.form.FormPanel({
    title:'TimeField Example',
    applyTo:'mainContent',
    layout:'form',
    labelAlign:'top',
    width:210,
    autoHeight:true,
    frame:true,
    items:[{
      xtype:'timefield',
      fieldLabel:'Time',
      minValue: '9:00 AM',
        maxValue: '6:00 PM',
        increment: 30
    }]
  });
});