Ext.ux.HasAccessCombo = Ext.extend(Ext.form.ComboBox, {

    initComponent:function() {
        Ext.apply(this, {
            tpl:  '<tpl for=".">'
                + '<div class="x-combo-list-item has-access-combo-item {'+this.fieldClass+'} " >'
                + '{' + this.displayField + '}'
                + '</div></tpl>'
        });
        // call parent initComponent
        Ext.ux.HasAccessCombo.superclass.initComponent.call(this);
    }, // end of function initComponent

    onRender:function(ct, position) {
        // call parent onRender
        Ext.ux.HasAccessCombo.superclass.onRender.call(this, ct, position);
    } // end of function onRender

});

Ext.reg('hasaccesscombo', Ext.ux.HasAccessCombo);