Search
43827 results 6841-6850
Forum
- 30th Sep 2016How to join a table on two conditions?Hi, There currently isn't a well defined why of doing what you are looking for with the PHP classes - however, it is actually possible with a little bit of a workaround. It is discussed in this thread. Regards, Allan
- 26th Sep 2016Global sortable defaults for tableHej Allan, I have problem in making it work in my project. I am a bit confused with optional arguments that is passed. could you please help with it.? I am calling the plugin first and then before I initialize my datatable. I am wondering if I have to pass any arguments locale or Collator(which is confusing) $.fn.dataTable.ext.order.intl(); $(function () { $('.example-datatable').DataTable( { "language": {"url": "//cdn.datatables.net/plug-ins/9dcbecd42ad/i18n/Swedish.json"} } );
- 24th Sep 2016Get Total Rows binded with Model JQuery Data Table and make search in datatable workingSorry, the and shouldn't be there.
- 24th Sep 2016Exporting to Excel, I'm not getting the table footer in ExcelI didnt include footer options in button definition earlier. Will include and try it, Thank you Allan
- 13th Sep 2016Dynamically adding table Headers correctly but not able to render the table rowsSolved
- 8th Sep 2016js function - table cell ($(".fullName").click) only works on first 10 rowsThank you and sorry for not checking.
- 29th Aug 2016Any way to query a DT table instance to get all *applicable* events to said table?Yeah - sorry if it wasn't clear in my reply. I did understand what you were looking for. Basically at the moment you need to add a console.log statement where I indicated above, or a break point there. That is the function that DataTables itself will call when triggering an event. The extensions generally have their own way of doing it. Allan
- 11th Aug 2016is it possible to embed a html tag to data table based on ajax json?i have an idea. please review it, if its bad ,,please suggest a good idea. in my database client_status is 0,1,2,3. in getClients.php file the corresponding html is encoded in json.
- 27th Jul 2016Data Table only showing one single characterI figured out what the problem was, The data was still in string format and needed to be JSON.parse(data);
- 22nd Jul 2016How can I sort my table that accesses a sql database (using the sorting method describeed on here)The tbody is inside of the foreach loop. Move it outside and it will work as expected. At the moment every row has a tbody, rather than there just being a single tbody (which currently is all DataTables supports). Allan