Ext Combo Box Example...

Date field example


This is a combo-box field as generated normally by Domino:

This date has the Ext stuff applied..



This is done with the following javascript where ext-example-combo is the html id of the field you are applying the rendering to..

Ext.onReady(function() {

    var combo = new Ext.form.ComboBox({
        typeAhead: true,
        triggerAction: 'all',
        transform: 'ext-example-combo',
        width: 135,
        emptyText:'Select something ...',
        selectOnFocus:true
    });
    
});