Search
10784 results 2471-2480
Forum
- 14th Dec 2018Initializing Datatable in a Modal after page loads with server side ajax post dataFor some reason just adding a parameter to the controller method fixes and form variables are present
- 21st Sep 2018Initial sorting by aaSorting for multiple columns not working for ajax dataThanks @colin I will check that.
- 19th Sep 2018RowReording not initializingTHANK YOU!!!! (as I cuss myself under my breath) I knew it was something simple!
- 14th Sep 2018Multiple Values selected message not appearing and initial value not appearing on editor formNevermind - I have figured it out but ran into a new problem which I'll start a new thread for The issue was this snippet editor.add({ label: "Division:", name: 'division_id', }); notice the name 'division_id' doesn't match the column definitions: "columns": [ {"data": "id"}, {"data": "eo_role", "defaultContent": "N/A"}, {"data": "division", "defaultContent": "N/A"}, {"data": "product_name"}, {"data": "category"}, ],
- 17th Aug 2018Javascript errors only on refresh / initial connection.I am returning 200s by hand as a test and the problem goes away. I'm not sure where or if its documented or if I just remember seeing it on the forum but I think Datatables expects both a 200 status code and a valid JSON otherwise you will get the invalid JSON message. Kevin
- 26th Jun 2018Jquery (Datatables) features not fully initializing?You are still loading the extensions before loading DataTables itself. Try using the download builder to get the files you need in the order you need. Allan
- 20th Apr 2018No data showing when initializing DataTable with column width set.Hi @nick_bestplaces , When you use columns.width like that, you're saying the table only has one column. Take a look at that link: either have nulls for the other columns, or use columnDefs to specify a single column. Cheers, Colin
- 13th Apr 2018Editor: Built-in delete message is initially blankI think we'll do the 1.7.4 release towards the end of this month. Enough time to allow anything that crops up to be fixed :). Allan
- 15th Mar 2018Initiating DataTables v1.10.16 using IE 9 throws Uint16Array errorMy guess is that you have included the pdfmake library in that datatables.js file? If so, that is the issue. pdfmake which is used by the Buttons extension for DataTables to create pdfs, doesn't support legacy IE. I am surprised that pdfmake throws an error on that though, rather than just testing for it and then refusing to execute. I'm only guessing without a link to a test case showing the issue though. Allan
- 11th Mar 2018Initializing a datatable with Ajax object as data sourceThank you so much!