diff --git a/server/src/com/cloud/api/query/dao/DomainRouterJoinDaoImpl.java b/server/src/com/cloud/api/query/dao/DomainRouterJoinDaoImpl.java index 6f7ef43048c..52c36e8b5c3 100644 --- a/server/src/com/cloud/api/query/dao/DomainRouterJoinDaoImpl.java +++ b/server/src/com/cloud/api/query/dao/DomainRouterJoinDaoImpl.java @@ -219,6 +219,7 @@ public class DomainRouterJoinDaoImpl extends GenericDaoBase
-
+
()
diff --git a/ui/scripts/instanceWizard.js b/ui/scripts/instanceWizard.js index 1401acef8e2..98ac62bd073 100644 --- a/ui/scripts/instanceWizard.js +++ b/ui/scripts/instanceWizard.js @@ -1068,7 +1068,9 @@ getUpdatedItem: function(json) { var item = json.queryasyncjobresultresponse.jobresult.virtualmachine; if (item.password != null) - alert("Password of new VM " + item.displayname + " is " + item.password); + cloudStack.dialog.notice({ + message: "Password of new VM " + item.displayname + " is " + item.password + }); return item; }, getActionFilter: function() { diff --git a/ui/scripts/vpc.js b/ui/scripts/vpc.js index 5e5b2aaa381..41d10edc73a 100644 --- a/ui/scripts/vpc.js +++ b/ui/scripts/vpc.js @@ -1507,7 +1507,9 @@ }, complete: function(args) { if (args.password != null) { - alert('Password of the VM is ' + args.password); + cloudStack.dialog.notice({ + message: 'Password of the VM is ' + args.password + }); } return 'label.action.start.instance'; } @@ -2682,6 +2684,7 @@ $.ajax({ url: createURL("listVpnGateways"), data: { + listAll: true, id: args.context.vpnGateway[0].id }, async: true, @@ -2804,6 +2807,7 @@ $.ajax({ url: createURL('listVpnGateways'), data: { + listAll: true, vpcid: args.context.vpc[0].id }, async: false, @@ -4187,6 +4191,7 @@ url: createURL('listVpnGateways'), async: false, data: { + listAll: true, 'vpcid': args.context.vpc[0].id }, success: function(json) {