aboutsummaryrefslogtreecommitdiffhomepage
path: root/main/app/sprinkles/admin/assets/userfrosting/js/pages/groups.js
blob: f06eda825aeae8a386b2766dcdb8746b90e6ccdd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/**
 * Page-specific Javascript file.  Should generally be included as a separate asset bundle in your page template.
 * example: {{ assets.js('js/pages/sign-in-or-register') | raw }}
 *
 * This script depends on widgets/groups.js, uf-table.js, moment.js, handlebars-helpers.js
 *
 * Target page: /groups
 */

$(document).ready(function () {

    $("#widget-groups").ufTable({
        dataUrl: site.uri.public + "/api/groups",
        useLoadingTransition: site.uf_table.use_loading_transition
    });

    // Bind creation button
    bindGroupCreationButton($("#widget-groups"));

    // Bind table buttons
    $("#widget-groups").on("pagerComplete.ufTable", function () {
        bindGroupButtons($(this));
    });
});