We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a444077 commit 8502a66Copy full SHA for 8502a66
1 file changed
ui/scripts/vpc.js
@@ -745,12 +745,19 @@
745
}
746
},
747
dataProvider: function(args) {
748
+ var data = {
749
+ page: args.page,
750
+ pageSize: pageSize,
751
+ networkid: args.context.networks[0].id,
752
+ listAll: true
753
+ };
754
+ var keyword = (((args || {}).filterBy || {}).search || {}).value;
755
+ if (keyword) {
756
+ data.keyword = keyword;
757
+ }
758
$.ajax({
759
url: createURL('listLoadBalancers'),
- data: {
- networkid: args.context.networks[0].id,
- listAll: true
- },
760
+ data: data,
761
success: function(json) {
762
var items = json.listloadbalancersresponse.loadbalancer;
763
if (items != null) {
0 commit comments