bug 14556: Add missing page + pageSize params to PF/LB list view

This commit is contained in:
Brian Federle 2012-03-30 14:53:02 -07:00
parent 481c7ccc4b
commit c15f58624e
1 changed files with 8 additions and 0 deletions

View File

@ -716,6 +716,8 @@
$.ajax({
url: createURL('listVirtualMachines'),
data: {
page: args.page,
pageSize: pageSize,
networkid: args.context.networks[0].id,
listAll: true
},
@ -1167,6 +1169,8 @@
$.ajax({
url: createURL('listVirtualMachines'),
data: {
page: args.page,
pageSize: pageSize,
networkid: args.context.networks[0].id,
listAll: true
},
@ -1748,6 +1752,8 @@
$.ajax({
url: createURL('listVirtualMachines'),
data: {
page: args.page,
pageSize: pageSize,
networkid: args.context.ipAddresses[0].associatednetworkid,
listAll: true
},
@ -2109,6 +2115,8 @@
$.ajax({
url: createURL('listVirtualMachines'),
data: {
page: args.page,
pageSize: pageSize,
listAll: true,
networkid: args.context.ipAddresses[0].associatednetworkid
},