mirror of
https://github.com/apache/cloudstack.git
synced 2025-11-03 04:12:31 +01:00
CLOUDSTACK-5698: UI > VPC > configure > Router > Network ACL Lists > implement search (i.e. pass keyword parameter to listNetworkACLLists API) when input field is not blank.
This commit is contained in:
parent
c99f0f925b
commit
dc0420c633
@ -1177,9 +1177,15 @@
|
||||
label: 'id'
|
||||
}
|
||||
},
|
||||
dataProvider: function(args) {
|
||||
dataProvider: function(args) {
|
||||
var data = {
|
||||
vpcid: args.context.vpc[0].id
|
||||
};
|
||||
listViewDataProvider(args, data);
|
||||
|
||||
$.ajax({
|
||||
url: createURL('listNetworkACLLists&vpcid=' + args.context.vpc[0].id),
|
||||
url: createURL('listNetworkACLLists'),
|
||||
data: data,
|
||||
success: function(json) {
|
||||
var items = json.listnetworkacllistsresponse.networkacllist;
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user