Search
11320 results 4531-4540
Forum
- 12th Nov 2013Full OData (open data protocol) support for DatatablesHello, I found this post regarding odata support: http://www.datatables.net/forums/discussion/comment/39744 is this the right way to do? I am thinking of translating the aoData (which is an array of keypair to the actual $filter suported by odata. regards
- 9th Nov 2013Search/Show entries and pagination not working correctlyof the search and filter input - this is probably
- 8th Nov 2013Is it possible to add metadata to ajax loaded data?you would want to filter or sort on - it
- 6th Nov 2013Capture Filtered Rows - How To?trigger this when someone filters the table - right now
- 6th Nov 2013How to add an object to the datatablea combobox as a filter box, this way you
- 5th Nov 2013Select multiple rows not working with Bootstap 3machine to provide a filter on every column through
- 4th Nov 2013Using fnMultiFilter Pluginkey ) { /* Add single column filter */ oSettings.aoPreSearchCols[ i ].sSearch = oData[key];
- 1st Nov 2013display icon in cellreturn ''; } } else if (type === 'filter') { if (data !== "") { return ''; } } return
- 31st Oct 2013Twitter Bootstrap 3forgot to post the filter adjustment for the datatables-bootstrap.js
- 29th Oct 2013fnFilter sends wrong column indexThat's great. I have replaced my original lines 37 to 41 with this: [code] $("thead input").keyup( function () { /* Filter on the column (the index) of this element */ oTable.fnFilter( this.value, oTable.fnVisibleToColumnIndex($("thead input").index(this)) ); } ); [/code] It now works exactly as planned. Thanks Allan