Repository: cloudstack Updated Branches: refs/heads/master 7ae8dc8fb -> 58d913c25
CLOUDSTACK-6606: Fixed: create network offering dailog box has greyed out (not selectable) providers for the connectivity service. Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/58d913c2 Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/58d913c2 Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/58d913c2 Branch: refs/heads/master Commit: 58d913c25dbec799f01fd51eb31996bfbe6a3eb7 Parents: 7ae8dc8 Author: Gabor Apati-Nagy <[email protected]> Authored: Thu May 8 16:27:02 2014 +0100 Committer: Jessica Wang <[email protected]> Committed: Mon May 12 13:56:05 2014 -0700 ---------------------------------------------------------------------- ui/scripts/configuration.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/58d913c2/ui/scripts/configuration.js ---------------------------------------------------------------------- diff --git a/ui/scripts/configuration.js b/ui/scripts/configuration.js index 704f4dd..54c03e7 100644 --- a/ui/scripts/configuration.js +++ b/ui/scripts/configuration.js @@ -2175,7 +2175,7 @@ } else { //Isolated network offering $useVpc.css('display', 'inline-block'); } - var $providers = $useVpcCb.closest('form').find('.dynamic-input select'); + var $providers = $useVpcCb.closest('form').find('.dynamic-input select[name!="service.Connectivity.provider"]'); var $optionsOfProviders = $providers.find('option'); //p.s. Netscaler is supported in both vpc and non-vpc if ($useVpc.is(':visible') && $useVpcCb.is(':checked')) { //*** vpc ***
