Search
10712 results 2461-2470
Forum
- 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!
- 3rd Jan 2018I have a datatable initialisation issue that break everythingThanks for posting back. Good to hear you've got it working now. Allan
- 28th Dec 2017Proper Syntax for Initializing "Order" FunctionalityThanks Kevin. That fixed it. Will check the browser console for these errors next time.
- 26th Jan 2017fixedHeader with scrollY 's initially misaligned to 'sAccording to the FixedHeader documentation FixedHeader is not compatible with the DT scrolling features. Kevin