We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c9db72b commit 70b8d47Copy full SHA for 70b8d47
2 files changed
app/sprinkles/admin/asset-bundles.json
@@ -75,6 +75,7 @@
75
},
76
"js/pages/role": {
77
"scripts": [
78
+ "userfrosting/js/widgets/users.js",
79
"userfrosting/js/widgets/roles.js",
80
"userfrosting/js/pages/role.js"
81
],
app/sprinkles/admin/assets/userfrosting/js/pages/role.js
@@ -20,4 +20,9 @@ $(document).ready(function() {
20
dataUrl: site.uri.public + '/api/roles/r/' + page.role_slug + '/users',
21
useLoadingTransition: site.uf_table.use_loading_transition
22
});
23
+
24
+ // Bind table buttons
25
+ $("#widget-role-users").on("pagerComplete.ufTable", function () {
26
+ bindUserButtons($(this));
27
+ });
28
0 commit comments