Explicit Dedication - Cluster UI/API Integration code
Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/c5493f07 Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/c5493f07 Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/c5493f07 Branch: refs/heads/master Commit: c5493f0778d71d8c8335712b0e383a074f91fbef Parents: 60ff005 Author: Pranav Saxena <pranav.sax...@citrix.com> Authored: Wed May 15 11:19:18 2013 +0530 Committer: Pranav Saxena <pranav.sax...@citrix.com> Committed: Thu May 30 21:57:10 2013 +0530 ---------------------------------------------------------------------- ui/scripts/system.js | 32 +++++++++++++++++++++++++++++--- 1 files changed, 29 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/c5493f07/ui/scripts/system.js ---------------------------------------------------------------------- diff --git a/ui/scripts/system.js b/ui/scripts/system.js index 8133509..f76b534 100644 --- a/ui/scripts/system.js +++ b/ui/scripts/system.js @@ -9430,21 +9430,47 @@ clusterName = hostname + "/" + dcName + "/" + clusterName; //override clusterName } array1.push("&clustername=" + todb(clusterName)); - + var clusterId = null; $.ajax({ url: createURL("addCluster" + array1.join("")), dataType: "json", async: true, success: function(json) { var item = json.addclusterresponse.cluster[0]; - args.response.success({ + clusterId= json.addclusterresponse.cluster[0].id; + /* args.response.success({ data: $.extend(item, { state: 'Enabled' }) }); }, error: function(XMLHttpResponse) { var errorMsg = parseXMLHttpResponse(XMLHttpResponse); args.response.error(errorMsg); - } + }*/ + + //EXPLICIT DEDICATION + if(args.$form.find('.form-item[rel=isDedicated]').find('input[type=checkbox]').is(':Checked')== true){ + var array2 = []; + if(args.data.accountId != "") + array2.push("&accountId=" +todb(args.data.accountId)); + } + + if(hostId != null){ + $.ajax({ + url:createURL("dedicateCluster&clusterId=" +clusterId +"&domainId=" +args.data.domainId + array2.join("")), + dataType:"json", + success:function(json){ + var dedicatedObj = json.dedicateclusterresponse.cluster; + args.response.success({ data: $.extend(item, dedicatedObj , {state:'Enabled'}) }); + + }, + + error:function(json){ + args.response.error(parseXMLHttpResponse(XMLHttpResponse)); + } + }); + } + } + }); },