Fix network offering list view

This commit is contained in:
Brian Federle 2011-11-17 15:22:34 -08:00
parent 74d53c8795
commit b01388d3be
1 changed files with 6 additions and 1 deletions

View File

@ -835,11 +835,16 @@
label: 'Network Offerings',
fields: {
name: { label: 'Name' },
displaytext: { label: 'Description' },
traffictype: { label: 'Traffic Type'}
},
dataProvider: function(args) {
$.ajax({
url: createURL("listNetworkOfferings&guestiptype=Isolated&supportedServices=sourceNat&page=" + args.page + "&pagesize=" + pageSize),
url: createURL('listNetworkOfferings'),
data: {
page: args.page,
pagesize: pageSize
},
dataType: "json",
async: true,
success: function(json) {