diff --git a/ui/jsp/serviceoffering.jsp b/ui/jsp/serviceoffering.jsp index f0c6fca0578..be0897923e3 100644 --- a/ui/jsp/serviceoffering.jsp +++ b/ui/jsp/serviceoffering.jsp @@ -254,7 +254,14 @@ dictionary = { - + +
  • + + + +
  • diff --git a/ui/jsp/systemserviceoffering.jsp b/ui/jsp/systemserviceoffering.jsp index 6d14b40a2d2..0076384624f 100644 --- a/ui/jsp/systemserviceoffering.jsp +++ b/ui/jsp/systemserviceoffering.jsp @@ -265,7 +265,14 @@ dictionary = { -
  • + +
  • + + + +
  • diff --git a/ui/scripts/cloud.core.serviceoffering.js b/ui/scripts/cloud.core.serviceoffering.js index 9d6e4744fc0..15c4a9d7552 100644 --- a/ui/scripts/cloud.core.serviceoffering.js +++ b/ui/scripts/cloud.core.serviceoffering.js @@ -149,7 +149,11 @@ function initAddServiceOfferingDialog() { var tags = $thisDialog.find("#add_service_tags").val(); if(tags != null && tags.length > 0) array1.push("&tags="+todb(tags)); - + + var hosttags = $thisDialog.find("#add_service_hosttags").val(); + if(hosttags != null && hosttags.length > 0) + array1.push("&hosttags="+todb(hosttags)); + if($thisDialog.find("#cpu_cap_dropdown_container").css("display") != "none") { array1.push("&limitcpuuse="+$thisDialog.find("#cpu_cap_dropdown").val()); } diff --git a/ui/scripts/cloud.core.systemserviceoffering.js b/ui/scripts/cloud.core.systemserviceoffering.js index 6d40e05950e..7d14363e6cf 100644 --- a/ui/scripts/cloud.core.systemserviceoffering.js +++ b/ui/scripts/cloud.core.systemserviceoffering.js @@ -150,6 +150,10 @@ function initAddSystemServiceOfferingDialog() { if(tags != null && tags.length > 0) array1.push("&tags="+todb(tags)); + var hosttags = $thisDialog.find("#add_service_hosttags").val(); + if(hosttags != null && hosttags.length > 0) + array1.push("&hosttags="+todb(hosttags)); + if($thisDialog.find("#cpu_cap_dropdown_container").css("display") != "none") { array1.push("&limitcpuuse="+$thisDialog.find("#cpu_cap_dropdown").val()); }