Search
43915 results 14921-14930
Forum
- 22nd Oct 2018Bubble editing - how do you set up a multiple select dropdown menu?Well, as I said, the demo will not do exactly what you are looking for. I'm not yet clear on if you want to store the labels into a text field, or references to another table? Allan
- 22nd Oct 2018There is not way to do inner join in datatables editorCurrently no. You create a VIEW in your SQL database and then read the data from the view, but write to the table, but only left join is currently supported. Allan
- 22nd Oct 2018Header columns do not align to body columns when using Scroller and drawing while hiddenThanks, but this is essentially a similar workaround as draw(). I would always have to call that function when the user clicks on a tab, because a window resize might have misaligned the columns of a hidden table.
- 21st Oct 2018Editor: Duplicate button not workingAll you should need to do is assign the table variable when initialing Datatables. FOr example line 88 of your code change to this: var table = $('#example').DataTable({ fixedHeader: true, Kevin
- 20th Oct 2018Server side, column sorting with render functiondirect create/edit of the table and a mysql_view for
- 20th Oct 2018Format Data for display and add edit delete buttons on server side scriptthe return column var table = $('#example').dataTable({ //... columnDefs : [ { targets : [4],
- 19th Oct 2018two tables share same functionThe first table is inside the "active" tab, the second is inside the "inactive" tab, but they both show up when I use the search feature. I don't see an error from the console, how can I fix it?
- 19th Oct 2018Datepicker on popup edit record form not pointing to existing date in fieldnew $.fn.dataTable.Editor({ ajax: url, table: tableId, order: [[1, "asc"]], fields:
- 19th Oct 2018How to go to first record on datatable when fixed column and pagination is used?When scrolling is enabled, the table is split into three components (or two if there is no footer). So you need to scroll the DataTables scrolling container. You can do that with: $('div.dataTables_scrollBody').scrollTop( 0 ); Allan
- 19th Oct 2018Editing a specific record on page load. IE: mysite.com/edit?id=42an example showing a table being individually editable on