From 91e3f8e89e8a542a47151c12033277c63ad79816 Mon Sep 17 00:00:00 2001 From: jessica Date: Tue, 31 Aug 2010 11:36:11 -0700 Subject: [PATCH] fix bug 6050 - extend pagesize to 500 --- ui/scripts/cloud.core.templates.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ui/scripts/cloud.core.templates.js b/ui/scripts/cloud.core.templates.js index 47f73b6e99b..b4aefb01671 100644 --- a/ui/scripts/cloud.core.templates.js +++ b/ui/scripts/cloud.core.templates.js @@ -87,7 +87,7 @@ function showTemplatesTab() { } $.ajax({ - data: createURL("command=listOsTypes&response=json"), + data: createURL("command=listOsTypes&response=json"+maxPageSize), dataType: "json", success: function(json) { types = json.listostypesresponse.ostype; @@ -104,7 +104,7 @@ function showTemplatesTab() { }); $.ajax({ - data: createURL("command=listServiceOfferings&response=json"), + data: createURL("command=listServiceOfferings&response=json"+maxPageSize), dataType: "json", success: function(json) { var items = json.listserviceofferingsresponse.serviceoffering; @@ -117,7 +117,7 @@ function showTemplatesTab() { }); $.ajax({ - data: createURL("command=listDiskOfferings&response=json"), + data: createURL("command=listDiskOfferings&response=json"+maxPageSize), dataType: "json", success: function(json) { var items = json.listdiskofferingsresponse.diskoffering;