Add seondary storage-level parameters UI

This commit is contained in:
Brian Federle 2013-04-16 12:46:58 -07:00
parent e8295dd4b0
commit 9130cd0499
1 changed files with 21 additions and 0 deletions

View File

@ -10653,6 +10653,27 @@
}
});
}
},
// Granular settings for storage pool
settings: {
title: 'label.menu.global.settings',
custom: cloudStack.uiCustom.granularSettings({
dataProvider: function(args) {
args.response.success({
data: [
{ name: 'config.param.1', value: 1 },
{ name: 'config.param.2', value: 2 }
]
});
},
actions: {
edit: function(args) {
// call updateStorageLevelParameters
args.response.success();
}
}
})
}
}
}