Date field example
This is a date field as generated normally by Domino:
This date has the Ext stuff applied..
This is done with the following code (of course done on the back of the extjs framework).
Ext.onReady(function() {
var dtmField = new Ext.form.DateField({
allowBlank: false
});
dtmField.applyTo( Ext.get('ExtDate') );
});
|