1234567891011121314151617 |
- $(function () {
- // load table
- var reportListTable = $('#report-list').DataTable({
- searching: true,
- pageLength: 10
- });
- // collapse click, toggle itself
- $('table#report-list .collapse').click(function () {
- $(this).collapse('toggle');
- });
- $('.agg-title').click(function () {
- var dupTitle = $(this).parents('.box-solid').find('.sup-title');
- dupTitle.toggle();
- });
- });
|