We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9237e91 commit a3d221bCopy full SHA for a3d221b
1 file changed
ui/scripts/globalSettings.js
@@ -36,8 +36,18 @@
36
value: { label: 'Value', editable: true }
37
},
38
dataProvider: function(args) {
39
+ var data = {
40
+ page: args.page,
41
+ pagesize: pageSize
42
+ };
43
+
44
+ if (args.filterBy.search.value) {
45
+ data.name = args.filterBy.search.value;
46
+ }
47
48
$.ajax({
- url: createURL("listConfigurations&page=" + args.page + "&pagesize=" + pageSize),
49
+ url: createURL('listConfigurations'),
50
+ data: data,
51
dataType: "json",
52
async: true,
53
success: function(json) {
0 commit comments