mirror of
https://github.com/apache/cloudstack.git
synced 2025-12-16 10:32:34 +01:00
fix bug 6050 - extend pagesize to 500
This commit is contained in:
parent
25ac9104bb
commit
91e3f8e89e
@ -87,7 +87,7 @@ function showTemplatesTab() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
$.ajax({
|
$.ajax({
|
||||||
data: createURL("command=listOsTypes&response=json"),
|
data: createURL("command=listOsTypes&response=json"+maxPageSize),
|
||||||
dataType: "json",
|
dataType: "json",
|
||||||
success: function(json) {
|
success: function(json) {
|
||||||
types = json.listostypesresponse.ostype;
|
types = json.listostypesresponse.ostype;
|
||||||
@ -104,7 +104,7 @@ function showTemplatesTab() {
|
|||||||
});
|
});
|
||||||
|
|
||||||
$.ajax({
|
$.ajax({
|
||||||
data: createURL("command=listServiceOfferings&response=json"),
|
data: createURL("command=listServiceOfferings&response=json"+maxPageSize),
|
||||||
dataType: "json",
|
dataType: "json",
|
||||||
success: function(json) {
|
success: function(json) {
|
||||||
var items = json.listserviceofferingsresponse.serviceoffering;
|
var items = json.listserviceofferingsresponse.serviceoffering;
|
||||||
@ -117,7 +117,7 @@ function showTemplatesTab() {
|
|||||||
});
|
});
|
||||||
|
|
||||||
$.ajax({
|
$.ajax({
|
||||||
data: createURL("command=listDiskOfferings&response=json"),
|
data: createURL("command=listDiskOfferings&response=json"+maxPageSize),
|
||||||
dataType: "json",
|
dataType: "json",
|
||||||
success: function(json) {
|
success: function(json) {
|
||||||
var items = json.listdiskofferingsresponse.diskoffering;
|
var items = json.listdiskofferingsresponse.diskoffering;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user