1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-03-21 14:50:08 +03:00

Bug #3275: Fix cluster wizard columns

This commit is contained in:
Carlos Martín 2014-11-17 17:49:06 +01:00
parent 722f645a33
commit 4576d001d5

View File

@ -74,13 +74,9 @@ function setupCreateClusterDialog(){
dialog.addClass("reveal-modal large max-height").attr("data-reveal", "");
var opts = {
multiple_choice: true
};
setupHostTableSelect(dialog, "cluster_wizard_hosts", opts);
setupVNetTableSelect(dialog, "cluster_wizard_vnets", opts);
setupDatastoreTableSelect(dialog, "cluster_wizard_datastores", opts);
setupHostTableSelect(dialog, "cluster_wizard_hosts", {multiple_choice: true});
setupVNetTableSelect(dialog, "cluster_wizard_vnets", {multiple_choice: true});
setupDatastoreTableSelect(dialog, "cluster_wizard_datastores", {multiple_choice: true});
// Handle the Create button
$('#create_cluster_submit').click(function(){