I've been wrestling with how to make the column show as a checkbox (non-editable one).
Any Suggested code for the renderer? Seems like there should be a simple config option, but I can't find it.
Ext.define('AEDT.view.EmailListByAddressEntry', {
extend: 'AEDT.view.ui.EmailListByAddressEntry',
alias: 'widget.emaillistbyaddressentry',
initComponent: function () {
var me = this;
me.callParent(arguments);
},
onCheckBoxWhilteListOnlyChange: function (field, newValue, oldValue, options) {
//debugger
if (newValue) {
this.store.filter("WhiteList", true);
store.filter();
} else {
this.store.clearFilter();
}
},
onBooleancolumnRender: function (abstractcomponent, options) {
}
});