[pve-devel] [PATCH manager 2/2] fix combogrid multiselect bug

Dietmar Maurer dietmar at proxmox.com
Tue Apr 26 12:00:34 CEST 2016


I can see the problem, but I do not plan to include such
clumsy workarounds. We need to find a better solutions...

Already looked at the Picker based Combogrid implementation?


>      valueField: 'node',
> -    displayField: 'node',
> +    displayField: 'nodename',
>      store: {
> -	    fields: [ 'node', 'cpu', 'maxcpu', 'mem', 'maxmem', 'uptime' ],
> +	    fields: [ 'node', 'cpu', 'maxcpu', 'mem', 'maxmem', 'uptime',
> +		{
> +		    name: 'nodename',
> +		    calculate: function(data) {
> +			return data.node;
> +		}
> +	    } ],




More information about the pve-devel mailing list