Search
23432 results 2621-2630
Forum
- 16th May 2023How can i add a column into tbody other than columns= [...] for use serverSide processingWe provide our Editor software which allows new rows to be created. It will work with Vue and the Yarja library also provides support for Editor (we don't publish Yajra ourselves, so I can't provide technical support for it though). If you want to write your own "create" form, then yes absolutely that can be done. Once you've added your new data, just call draw() since you are using server-side processing, and it will get the latest data from the server. Allan
- 26th Apr 2023I get an error 'column count' when i use it wth my db wch has 14 columnsHave you followed the steps in the technical notes linked to in the error? That'll be the place to start. If so, what did you find? Colin
- 19th Apr 2023Rendering columns with custom tagsThanks for the clarification. Unfortunately, at this time, it is not possible to use components in the results returned from render. That is something I would like to address in future. Sorry! Allan
- 7th Apr 2023Sort by two columns in an inverse direction, when a column's sort button is clickedNo, sorry. At this time that is not possible. The will both sort in the same direction. If you need more control, what you could do is remove the default DataTables listener for the click event on the header and instead add your own which would call order() with the combined ordering as needed. Allan
- 27th Mar 2023Buttons broken when using extra dropdown columnsIf you still need help then please post a link to your page or a test case replicating the issue so we can help debug. https://datatables.net/manual/tech-notes/10#How-to-provide-a-test-case
- 24th Feb 2023Export edited columns to ExcelHi Kevin, thank you very much for the answer, I managed to solve my problem using row().invalidate() :)
- 28th Dec 2022How to search in two columns of a datatable?Use a regex search. See this example. In the Global search input type accountant|tokyo. Check the Treat as regex checkbox then uncheck the Use smart search checkbox. Kevin
- 26th Oct 2022Set a columns value in php editor server side based on the value of another column.Thanks Allan
- 5th Oct 2022On Creating Dynamic columns from server and respective data for those columns. But getting errorThis appears to be a duplicate of your other thread unless I'm mistaken? Allan
- 19th Sep 2022Move filters out of columns and add column names to each selectDoing a little debugging of the code where the item is selected you can see some of the special characters are escaped using $.fn.dataTable.util.escapeRegex(). You need to remove the \, like this: http://live.datatables.net/sixopiti/22/edit Look at the console for the output with the backslash. BTW, if you work on an example and make changes the link will change (or you might need to clone it). Once you make the changes you can post the new link for us to look at. Kevin