From 85e88e9cbcba913fd9848e1daa42e21259c02a96 Mon Sep 17 00:00:00 2001 From: Jessica Wang Date: Wed, 31 Dec 2014 16:21:13 -0800 Subject: [PATCH] CLOUDSTACK-8139: UI > create compute offering > server-side only supports one single host tag instead of multiple host tags. So, change UI to take in only one single host tag instead of multiple host tags in create compute dialog. --- ui/scripts/configuration.js | 42 +++++-------------------------------- 1 file changed, 5 insertions(+), 37 deletions(-) diff --git a/ui/scripts/configuration.js b/ui/scripts/configuration.js index 6468d223fd6..da01b4b27c7 100644 --- a/ui/scripts/configuration.js +++ b/ui/scripts/configuration.js @@ -339,42 +339,10 @@ }); } }, - hostTags: { - label: 'label.host.tags', - docID: 'helpComputeOfferingHostTags', - isTokenInput: true, - dataProvider: function(args) { - $.ajax({ - url: createURL("listHostTags"), - dataType: "json", - success: function(json) { - var item = json.listhosttagsresponse.hosttag; - var tags = []; - - if (item != null) - { - tags = $.map(item, function(tag) { - return { - id: tag.name, - name: tag.name - }; - }); - } - - args.response.success({ - data: tags, - hintText: "Type in part of a host tag", - noResultsText: "No host tags found" - }); - }, - error: function(XMLHttpResponse) { - var errorMsg = parseXMLHttpResponse(XMLHttpResponse); - - args.response.error(errorMsg); - } - }); - } - }, + hostTags: { //Only one single host tag is supported at server-side. Multiple host tags are NOT supported at server-side. + label: 'Host Tag', + docID: 'helpComputeOfferingHostTags' + }, cpuCap: { label: 'label.CPU.cap', isBoolean: true, @@ -958,7 +926,7 @@ label: 'label.storage.tags' }, hosttags: { - label: 'label.host.tags' + label: 'Host Tag' }, domain: { label: 'label.domain'