Ext JS JavaScript DHTML



Hello World Window






Ext.onReady(function() {
    Ext.QuickTips.init();
    
    var formPanelItems =[
      {
        xtype            : 'numberfield',
        fieldLabel       : 'Numbers only',
        allowBlank       : false,
        emptyText        : 'This field is empty!',
        decimalPrecision : 3,
        minValue         : 0.001,
        maxValue         : 2
          
      }
    ];
    
    var fp = new Ext.form.FormPanel({
       renderTo     : Ext.getBody(),
       width        : 400,
       title        : 'Number field',
       height       : 170,
       frame        : true,
       bodyStyle    : 'padding: 5px',
       monitorValid : true,
       monitorPoll  : 50, 
       labelWidth   : 125,   
       defaults     : {
          msgTarget : 'side',
          anchor    : '-20'
       },
       items        : formPanelItems
    });
});
 
asdf