Ext.namespace('NextLogic');

NextLogic.NlCombo = Ext.extend(Ext.form.ComboBox, {
    valueField: 'id',
    displayField: 'name',
    typeAhead: true,
    mode: 'local',
    triggerAction: 'all',
    emptyText:'Select ...',
    selectOnFocus: true,
    lastQuery: "",
    disableKeyFilter: true,
    editable: false
});

Ext.reg('nl_combo', NextLogic.NlCombo);
