Search
11428 results 2011-2020
Forum
- 3rd Jun 2013The function fnFilter does not filter any lineOk, thank you. Antoine
- 21st May 2013Having trouble using the search filter when 'copying & pasting'DataTables should probably listen for the paste event internally I guess. Thanks for flagging that up. Allan
- 15th May 2013Page state saving not working with filterHello?? Some help would be nice...
- 26th Mar 2013incorrect filter total records number when filtering via server-side.sorry~ i see. i should set the real data number to the iTotalRecords in Server-side.
- 16th Mar 2013Inline Edit Data Not Retained After Subsequent Filter or Sort[NOTE: I have reposted with question as a new entry, since it really deals with a different topic] http://datatables.net/forums/discussion/14646/fngetposition-returns-cannot-read-property-ntr-of-undefined-when-called-on-table-w-fixed-cols After some further research, it appears that the use of the Fixed Columns feature is a contributor to this problem. [code] new FixedColumns(oTable,{"iLeftColumns":6,"iLeftWidth":500}); [/code] When referencing columns on the right side of the split, the following lines work: [code] var oTable = $('#mtTable').dataTable(); var aPos = oTable.fnGetPosition(this); oTable.fnUpdate(sValue,aPos[0],aPos[1]); [/code] But, the first column on the right side has an index of zero. How would I access the columns on the left side of the split, perhaps a different table name in the "var oTable = " statement?
- 12th Mar 2013Individual column filter using "select" not workingPlease link to a test case: http://datatables.net/forums/discussion/12899/post-test-cases-when-asking-for-help-please-read
- 23rd Jan 2013OR the values enter in the filter box instead of ANDRelated post: http://datatables.net/forums/discussion/13721/custom-searchfield
- 27th Nov 2012Updating cell class, when a cell is not visible due to the search filterThank you! Works perfectly.
- 19th Nov 2012Filter (Search) inside ColumnsI would send the link but it's stored locally ..
- 13th Nov 2012Multi filter by select no efficient with links ...Sounds like you need to strip the HTML before building the select values. str.replace( /<.*?>/g, "" ) is what I use to strip HTML in DataTables. Allan