Explicit Dedication - Cluster UI-API Integration code

This commit is contained in:
Pranav Saxena 2013-05-27 15:44:02 +05:30
parent 7f0e6561a5
commit d67c5a84cb
1 changed files with 11 additions and 1 deletions

View File

@ -8966,7 +8966,17 @@
dataType:"json",
success:function(json){
var jid = json.dedicateclusterresponse.jobid;
args.response.success({ data: $.extend(item, dedicatedObj , {state:'Enabled'}) });
//args.response.success({ data: $.extend(item, dedicatedObj , {state:'Enabled'}) });
args.response.success({
_custom:
{ jobId: jid
},
notification: {
poll: pollAsyncJobResult
},
data:$.extend(item, {state:'Enabled'})
});
},