Search
5703 results 321-330
Forum
- 29th Nov 2019Paging option is not showing in data table.Due to column hiding buttons.We're happy to take a look, but as per the forum rules, please link to a test case - a test case that replicates the issue will ensure you'll get a quick and accurate response. Information on how to create a test case (if you aren't able to link to the page you are working on) is available here. Cheers, Colin
- 13th Sep 2019server side JSON not pagingAh ha again. I think the issue was I wasn't properly fetching the draw param Now it's working without the increment thing.
- 19th Aug 2019How to over write the paging size for datatable with rowsGroup?The RowsGroup plugin is not apart of Datatables. I'm not familiar with how it works and how it would affect the rows. But I can see where Datatables would still count the "merged" rows as two since they are two tr in the table. You probably will need contact the developer of RowsGroup for your question. Or maybe the Datatables RowGroup extension will do what you want. Kevin
- 30th Jul 2019Info and Paging with "normal" font-weightHi kthorngren, kconrad and Colin Many thanks to each of you. @kthorngren, I had already consulted the https://datatables.net/examples/styling/bootstrap4.html link, and I opted for a radical solution, and by cleaning the code severely, I found a unclosed tag ... it only remains to hope that this is due to an unfortunate copy / paste.... Anyway, many many thanks again to each of you for your help
- 7th Jun 2019Solution Request: Table of 20 fields in vertical/column order, paging through datasetsHi @DW71 , The Select extension would be able to help achieve that. In this example here, the columns that wouldn't fit in the display are automatically shown. You can change the layout with responsive.details.renderer, see example here, and this could just make additional rows in the table to give those three rows you're after. With Responsive , you would get different results with different sized displays, but that could be managed by putting the table within a container. Hope that helps, Cheers, Colin
- 27th May 2019Checkbox uniform class not shown after datatable pagingProblem solved, wrong event name been used.
- 22nd May 2019serverside paging problem (start value = legnth value )Hi @055055 , We're happy to take a look, but as per the forum rules, please link to a test case - a test case that replicates the issue will ensure you'll get a quick and accurate response. Information on how to create a test case (if you aren't able to link to the page you are working on) is available here. Cheers, Colin
- 28th Nov 2018How to read through all cells in a column with a paging datatable?Hi @Keith_H , The data for that column could be read with column().data(), which you can then parse. The last example on filter()sounds like it may also do the trick for you. Cheers, Colin
- 13th Nov 2018Server side paging with a generic data source (C#).Yes, you could try using linq. You need to be a little careful with it since you don't want to pull all of the data out of the database, and then discard the majority. With 40k rows I'd suggest you use client-side processing first. If you find the performance too slow, then spend the time looking into how to implement server-side processing. Allan
- 19th Oct 2018Paging and Order in Data Tables not workingThe pagination, sorting, searching and the recordsTotal, etc are the responsibility of your server side script. The requirements for server side processing are described here: https://datatables.net/manual/server-side What are you using for your server side script? Kevin