From 3b939b9ce12b6786a45f8275a322b36442ea11b4 Mon Sep 17 00:00:00 2001 From: jessica Date: Tue, 31 Aug 2010 11:28:12 -0700 Subject: [PATCH] fix bug 6050 - extend pagesize to 500. --- ui/scripts/cloud.core.templates.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ui/scripts/cloud.core.templates.js b/ui/scripts/cloud.core.templates.js index 4e176c37666..932157fec20 100644 --- a/ui/scripts/cloud.core.templates.js +++ b/ui/scripts/cloud.core.templates.js @@ -61,7 +61,7 @@ function showTemplatesTab() { addIsoZoneField.append(""); } $.ajax({ - data: "command=listZones&available=true&response=json", + data: "command=listZones&available=true&response=json"+maxPageSize, dataType: "json", success: function(json) { var zones = json.listzonesresponse.zone; @@ -87,7 +87,7 @@ function showTemplatesTab() { } $.ajax({ - data: "command=listOsTypes&response=json", + data: "command=listOsTypes&response=json"+maxPageSize, dataType: "json", success: function(json) { types = json.listostypesresponse.ostype; @@ -104,7 +104,7 @@ function showTemplatesTab() { }); $.ajax({ - data: "command=listServiceOfferings&response=json", + data: "command=listServiceOfferings&response=json"+maxPageSize, dataType: "json", success: function(json) { var items = json.listserviceofferingsresponse.serviceoffering; @@ -117,7 +117,7 @@ function showTemplatesTab() { }); $.ajax({ - data: "command=listDiskOfferings&response=json", + data: "command=listDiskOfferings&response=json"+maxPageSize, dataType: "json", success: function(json) { var items = json.listdiskofferingsresponse.diskoffering;