ObjectGrid.js: new monStoreErrors properties

This commit is contained in:
Dietmar Maurer 2017-04-07 06:31:34 +02:00
parent 835b5d8e6a
commit 4297e79537

View File

@ -22,6 +22,8 @@ Ext.define('Proxmox.grid.ObjectGrid', {
disabled: false,
hideHeaders: true,
monStoreErrors: false,
add_combobox_row: function(name, text, opts) {
var me = this;
@ -283,5 +285,9 @@ Ext.define('Proxmox.grid.ObjectGrid', {
});
me.callParent();
if (me.monStoreErrors) {
Proxmox.Utils.monStoreErrors(me, me.store);
}
}
});