Search
23430 results 9061-9070
Forum
- 9th Feb 2016Few Problemsthe rest of the columns: $(document).ready(function() { $('#maintable').DataTable( { "aoColumns": [ null,
- 9th Feb 2016Datatables Editor - Select List Field Type, what kind of data should I send via Editor?value":6} ] I have defined columns like so (I removed
- 8th Feb 2016Add Filtering in the Column HeaderYep, I've tried both. There seems to be some sort of issue with searching the columns specifically. Using the standard out of the box search box works just fine.
- 8th Feb 2016Dynamically set column data from ajax sourceSadly, the only method I've found to do this requires two server calls (one for columns, one for data). Like this: $.get("/getColumns", function (cols) { $("#table").DataTable({columns: cols}); } ); Allan answers this here: http://www.datatables.net/forums/discussion/3519/getting-column-names-from-ajax-source
- 8th Feb 2016Hide Column when select an option from external dropdown menuYou would use the API methods that @jr42.gordon linked to. There are examples in those reference pages. Primarily you use the column() selector method to select the columns you want to target. Allan
- 8th Feb 2016Sorting Server Sideto sort on multiple columns at once the generated
- 5th Feb 2016Server Side Processing Results in NothingSELECT SQL_CALC_FOUND_ROWS '', '', '' That doesn't look good. It appears to be caused by the fact that you don't have a db field in the columns arrays like in the examples. Fixing that should address the issue. Allan
- 5th Feb 2016(Bootstrap) buttons() is empty when server-side processing is usedurl: '/my/url', type: 'post' }, columns: [ //data settings here ] }); new
- 5th Feb 2016Best way to update cell in row based on data in another cell?is var table = $('#tbl').DataTable({ columns: [{ name: 'a' }, { name: 'b',
- 5th Feb 2016How to make headers link with datatable?I found. I should not use title key in the columns array. If the key presents then in will replace the content of the header. Solved. Thanx ))