mirror of
https://git.proxmox.com/git/proxmox-widget-toolkit
synced 2025-05-17 04:55:54 +00:00
object grid: call rendere with our scope
having window as this scope has zero benefits and while one could already try to get the local scope via some Ext.ComponentQuery query its just nicer to have it easily available. Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
This commit is contained in:
parent
563cf87d59
commit
38e653f14b
@ -248,7 +248,7 @@ Ext.define('Proxmox.grid.ObjectGrid', {
|
||||
|
||||
let renderer = rowdef.renderer;
|
||||
if (renderer) {
|
||||
return renderer(value, metaData, record, rowIndex, colIndex, store);
|
||||
return renderer.call(me, value, metaData, record, rowIndex, colIndex, store);
|
||||
}
|
||||
|
||||
return value;
|
||||
|
Loading…
Reference in New Issue
Block a user