ui: ha: calculate service name in model to fix sorting

Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
This commit is contained in:
Thomas Lamprecht 2019-12-03 14:29:36 +01:00
parent f18dacb78f
commit 7ce422bbc0
2 changed files with 16 additions and 11 deletions

View File

@ -145,16 +145,7 @@ Ext.define('PVE.ha.ResourcesView', {
header: gettext('Name'),
width: 100,
sortable: true,
dataIndex: 'sid',
renderer: function(value, metaData, record) {
let res = value.match(/^(\S+):(\S+)$/);
if (res[1] !== 'vm' && res[1] !== 'ct') {
return '-';
}
//var guestType = res[1];
let vmid = res[2];
return PVE.data.ResourceStore.guestName(vmid);
}
dataIndex: 'vname',
},
{
header: gettext('Max. Restart'),

View File

@ -72,7 +72,21 @@ Ext.define('PVE.ha.StatusView', {
'id', 'type', 'node', 'status', 'sid',
'state', 'group', 'comment',
'max_restart', 'max_relocate', 'type',
'crm_state', 'request_state'
'crm_state', 'request_state',
{
name: 'vname',
convert: function(value, record) {
let sid = record.data.sid;
if (!sid) return '';
let res = sid.match(/^(\S+):(\S+)$/);
if (res[1] !== 'vm' && res[1] !== 'ct') {
return '-';
}
let vmid = res[2];
return PVE.data.ResourceStore.guestName(vmid);
},
},
],
idProperty: 'id'
});