cloudstack 3.0 new UI - event page, alert page - pass listAll=true listXXX API call.

This commit is contained in:
Jessica Wang 2012-01-11 12:13:09 -08:00
parent 6b1c19cf6e
commit 3f824c4257
1 changed files with 2 additions and 2 deletions

View File

@ -38,7 +38,7 @@
}
$.ajax({
url: createURL("listEvents&page=" + args.page + "&pagesize=" + pageSize + array1.join("")),
url: createURL("listEvents&listAll=true&page=" + args.page + "&pagesize=" + pageSize + array1.join("")),
dataType: "json",
async: true,
success: function(json) {
@ -90,7 +90,7 @@
}
}
$.ajax({
url: createURL("listAlerts&page=" + args.page + "&pagesize=" + pageSize + array1.join("")),
url: createURL("listAlerts&listAll=true&page=" + args.page + "&pagesize=" + pageSize + array1.join("")),
dataType: "json",
async: true,
success: function(json) {