Cael
Cael

Reputation: 556

Bootstrap Table Export and Refresh

I am trying to implement the table refresh and export as shown as the first example here: http://wenzhixin.net.cn/p/bootstrap-table/docs/extensions.html but it seems like my codes are not working. The plugin I use are tableExport and bootstrap-table-export.js. This is my code: http://jsfiddle.net/ug0hycdg/

Table pagination only works if I include this script:

 $(document).ready(function () {
        $('#pageTables').dataTable();
    });

but the table should be in pagination even without this script.

Any idea why it won't work?

I've added the button:

    <button onClick ="$('#pageTables').tableExport({type:'excel',escape:'false'});"> Save </button>

Upvotes: 0

Views: 10225

Answers (1)

wenyi
wenyi

Reputation: 1384

you need to import the source of bootstrap-table, the jsFiddle example: jsfiddle.net/e3nk137y/147/.

Hope to help you.

Upvotes: 1

Related Questions