Search
43827 results 6461-6470
Forum
- 24th Apr 2023Search API by Server-Side filters not the table:( :( :( :( :( :( :( :( :( Why didn't I see this error!!! Many thanks. In my first release I get the error of missing $_POST['draw'] and I think that is the reason why I have it hard-coded. Now it works.
- 18th Apr 2023How do I make a particular Column fixed in my Table ? I don't need right or left column optionsYes, sorry we didn't get back to you. I think it is possible through a combination of ColReorder and FixedColumns' fixedColumns().left() method, which you can use to get / set the number of fixed columns. But it isn't something I've tried before, so I can't say for certain if it would work or not. Allan
- 12th Apr 2023How to use fixedColumn and fixedHeader in the same table ?Thanks Kevin
- 9th Apr 2023How to add export button in Datatable Sample table?Thank you and it got worked for export button.
- 23rd Mar 2023how to make my cloud table inlin editCloudTables doesn't yet have an inline editing option I'm sorry to say. It is planned and it will be configurable in the UI when it is available. Regards, Allan
- 23rd Mar 2023How to resolve this error? Data Tables warning:table id=mySites Table - invalid responseDo you mean the Invalid JSON response error? The troubleshooting steps are found at the link in the error: https://www.datatables.net/manual/tech-notes/1 Let us know what you find. Kevin
- 20th Mar 2023When search using combination of letters it breaks - DataTables warning: table id=example - InvalidWe'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
- 27th Feb 2023The word "edit" appears below my tableAlthough you probably SHOULD mention this "glitch" on your site!! the word "edit" appears because I was still logged in as "admin" AND in "edit mode." What is controlling "edit mode". Datatables doesn't have an "edit mode" by default. so I would say this is not a glitch caused by Datatables. figured that my hitting UPDATE ... and then viewing the page would show JUST WHAT a random visitor would see. NOT SO. What is "UPDATE" on your site. Again this isn't something Datatables will have by default. So again this is not a Datatables glitch. You have some custom code, it might be customized Datatables options or otherwise, that is doing or not doing what you want. Without seeing the problem its impossible to say what is happening. As Tangerine mentioned we will need to see a test case showing the issue to help debug. https://datatables.net/manual/tech-notes/10#How-to-provide-a-test-case Kevin
- 22nd Feb 2023Data Table with server side processing returns same set of data rows on paginationif there's 20 records in total pagination shows for 4 pages There should be only 2 pages if you have 10 records shown and 20 in total. What is recordsTotal being returned as? Can you link to a page showing the issue please? Allan
- 17th Feb 2023Update language.info after redrawing tableThank you. It did the trick. Here is the complete solution for the benefit of the others: booksifno = ''; function loadBooks (url){ $.ajax({ url: url, type: "GET" }).done(function (result) { table2 .clear().draw(); table2 .rows.add(result.data).draw(); table2 .columns.adjust(); booksinfo = " of " + result.records; table2 .responsive.recalc(); }); } table2 = $("#table2").DataTable({ "infoCallback": function( settings, start, end, max, total, pre ) { return "Showing " + total + booksinfo; }, });