Search
5703 results 5091-5100
Forum
- 11th Jul 2019how to reload the datatable server side processing in button click event using angular 7const that = this; this.dtOptions = { pagingType: 'full_numbers', responsive: true, serverSide:
- 7th Apr 2019Customize paginationHi @Vegito , There's a few default types of pagingType, and a few additional plugins. I don't believe your requirement is currently there, but you could use those plugins to create your own. Cheers, Colin
- 30th Mar 2019Angular 2 / 4 Server Side Processing for Datatables not displaying dataAngular 2 getPaymentHistoryPagination() { this.dtOptions = { pagingType: 'full_numbers', serverSide: true, processing:
- 27th Mar 2019Trying to add buttons using Angular 6new Subject(); ngOnInit() { this.dtOptions = { pagingType: 'full_numbers', pageLength: 10, responsive:
- 20th Mar 2019How to destroy the table once it clickvar oTable; var currentNumberDisplayed = 5; var oTable1; $(document).ready(function() { $('#load').click( function () { var oSettings = oTable.fnSettings(); console.log(oSettings); currentNumberDisplayed += 5; oSettings._iDisplayLength = currentNumberDisplayed; oTable.fnDraw(); console.log(oSettings); }); oTable = $('[id$=testTable]').dataTable({ "iDisplayLength": 5 // "paging":false }); oTable = $('[id$=testTable1]').dataTable({ "iDisplayLength": 5 }); $('#load').click( function () { var oSettings = oTable.fnSettings(); console.log(oSettings); currentNumberDisplayed += 5; oSettings._iDisplayLength = currentNumberDisplayed; oTable.fnDestroy(); });
- 22nd Feb 2019Deselect the previously selected rows from start, with a single clickprocessing": true, "jQueryUI": true, "pagingType": "full_numbers", [...] "columnDefs": [{ "targets": 0,
- 15th Jan 2019order [[0, "desc"]] not sorting date column to descending.lengthChange": false, "pageLength": 20, "pagingType": "full_numbers", "order": [[0, 'desc']]
- 5th Jan 2019Integration of deeplink.js into existing tabledataTable = $('#mytable').DataTable( { "iDisplayLength": 2, "pagingType": "full", $.fn.dataTable.ext.deepLink( ['search.search' ] ) } ); } ); </script>
- 19th Dec 2018How to limit number of paginate_button in pagination?Hi @colin, Thank you for your answer. I've already modified pagingType and language.pagination to my needs but it still does not offer what I need. I will check the plugins. Thx!
- 5th Dec 2018restyle pagination and infoHi @"meyerauslander@gmail.com" , Yep, the best bet is to look at pagingType, see the example here. You can also create your own, or use those created by other - see list here. Cheers, Colin