[Kimchi-devel] [PATCH V7] Add nfs server and target UI in create storage pool
Aline Manera
alinefm at linux.vnet.ibm.com
Thu Jan 23 13:10:29 UTC 2014
> + getStorageServers: function(type, suc, err) {
> + var url = kimchi.url + 'storageservers?target_type=' + type;
> + kimchi.requestJSON({
> + url : url,
> + type : 'GET',
> + contentType : 'application/json',
> + dataType : 'json',
> + success : suc,
> + error : err
> + });
> + },
> +
> + getStorageTargets: function(server,type, suc, err) {
> + var url = kimchi.url + 'storageservers/' + server + '/storagetargets?target_type=' + type;
In the latest patches from Royce, the query parameter changed to
_target_type
I will fix it before applying the patch. That way you don't need to
resend it
> - kimchi.select('storagePool-list', options);
> - $('#poolType').change(function() {
> + $('#poolTypeId').selectMenu("setData", options);
> + kimchi.getStorageServers('netfs', function(data) {
> + var serverContent = [];
> + if (data.length > 0) {
> + $.each(data, function(index, value) {
> + serverContent.push({
> + label : value.addr,
> + value : value.addr
Same here. It should be value.host
More information about the Kimchi-devel
mailing list