Saturday, November 27, 2010

ExtJS datefield

Here is an example of a date field in extjs:

Ext.onReady(function(){
fieldname = new Ext.form.DateField({
dateFormat: 'd-m-Y', //display format
value: "2010-01-01",
selectOnFocus:true,
minValue: '2010-01-01', //optional start limit
maxValue:'2010-12-31', // optional end limit
applyTo: 'frmMyDate',
});
});

No comments: