Search
23531 results 2621-2630
Forum
- 21st May 2024Rendering Vue Components as ColumnsI have been browsing through the forum and have seen some posts like https://datatables.net/forums/discussion/comment/231766/ and https://datatables.net/forums/discussion/comment/220330. I have put together a small example (link below) that might serve as a reference to anyone else searching for this. https://stackblitz.com/edit/datatable-vue3-components
- 22nd Apr 2024Export to csv/excel one columns comes with trailing zeroesMy mistake its actually rounding the value ... correct value - 64295442717783187437 displayed in excel - 64295442717783200000 Please give some advice as i am new to using data tables
- 16th Apr 2024Columns width not same but i cannot reproduceMy guess is you are initialising the DataTable hidden or outside the DOM. Call columns.adjust() when you make it visible. Also, add style="width:100%" to your table. I know you have w-[100%], but that isn't enough (CSS is really hard to parse in Javascript). Allan
- 23rd Mar 2024Issue with multiple columns being marked as sorted when ordered column index is greater >= 10Can confirm that both the issues have been fixed with 2.0.3. Thanks!
- 12th Mar 2024Ajax POST on clicking non-orderable column's title@allan Thanks for your support!
- 1st Mar 2024How do you fix columns for added header rows?Yes, it will take some planning and testing to upgrade to 2.0. Kevin
- 22nd Feb 2024Fixed columns table header borders alignment issue with table body bordersHi Allan, I did what you suggest and the position of the search input is now ok but the borders still missing. I will wait until you can check. Thanks and kind regards, Reginaldo Bray
- 28th Jan 2024sorting columns with a LEFT JOINSince you are passing an empty array to the client side "order" method which means "no client side ordering" and seem to not use Editor, this really isn't a Data Tables problem ... Looks like you have an issue generating the right SQL statement for your business problem. I would recommend you ask this on Stack Overflow. But of course you could also not do any server side ordering and do it client side: https://datatables.net/reference/option/order
- 20th Dec 2023How to search multiple columns using REACTHi @allan , thanks for the code! -Abel
- 11th Dec 2023how to get values on two columns of all checked rowsThank you very much Allan