Search
43745 results 6681-6690
Forum
- 20th Feb 2019Search in a table with "tags"/"keywords"Thank you so much @colin !!
- 30th Jan 2019Size of columns in table@tangerine Thanks!
- 30th Jan 2019DataTables warning (table id = 'DataTables_Table_0'): Requested unknown parameter '0' from the dataHi, Thanks for your question. As noted in the forum rules, please post a link to a running test case showing the issue so we can offer some help. Information on how to create a test case (if you aren't able to link to the page you are working on) is available here. Allan
- 26th Jan 2019Big TableI found the answer. $(document).ready(function () { $('#myTable').dataTable( { "lengthMenu": [ [10, 25, 50, -1], [10, 25, 50, "All"] ]}); });
- 23rd Jan 2019how to make table display only selected row?Hi @Rukirii You could delete all the other rows with rows().remove(), but then they would be gone so if you want them back, that would be an issue. Alternatively, you could display a modal with the row().data() for that row, Cheers, Colin
- 18th Jan 2019Editor alias for same table name?thank you Alan, the solution was great!
- 2nd Jan 2019Class no-footer applied to Table despite a footer is present.Another solution is to override with my own styles.css file, but that as well is more a hack: table.dataTable.no-footer { border-bottom: none; }
- 19th Nov 2018How to translate table descriptions?Thanks, its works.
- 19th Nov 2018TypeError: c is undefined, when binding data in HTML TableIts hard to say without having information about your config. A search of the forum indicates others have had issues with JSON structure, column config mismatches, etc. Please post a link to your page or a test case replicating the issue. You could try running the debugger and posting the resulting code. https://datatables.net/manual/tech-notes/10 Kevin
- 14th Nov 2018Log table for errorsThis does work, $id = '0'; $values = $editor['debug']; insert_error_log ( $db, 'error', 't_company', $id, $values ); But I currently don't have the $id of the item being edited or created in my scope and it also saves the SELECT queries as oppose to just errors. Should the $id var be available somewhere in the scope and can I access just errors, will they be in a nested element in the debug array. It's a little tricky to test as I haven't figured out how to force an error! Thanks Chris