Search
11331 results 2001-2010
Forum
- 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
- 2nd Nov 2012Footer filter has empty dataOh my - sorry. I saw bServerSide and just assumed it would be true (since it is false by default there is not need to specify it). So yes, you are using client-side processing and fnInitComplete is the way to go :-) Allan
- 31st Oct 2012SELECT filter on topMerci!
- 24th Sep 2012Column Filter plugin not working with GridViewsalam... use this script $(document).ready(function () { $('#GridViewExample').GridviewFix().dataTable({ "sScrollY": 500, "bJQueryUI": true, "sPaginationType": "full_numbers" }); }); its work.. salam...
- 13th Aug 2012Datatable re-sizes itself after filter and unfilter when using bCollapse (fix attached)Thanks J!! Exactly the fix I needed as well.
- 25th Jul 2012filter is case sensitivethanks Allan for the quick reply i'll try to make the appropriate changes. Arjun
- 25th Jul 2012Using links instead of dropdown for length filterVery nice :-). Just one comment - it would be worth using the fnLengthChange plug-in rather than setting the "private" variables directly: http://datatables.net/plug-ins/api#fnLengthChange . Allan
- 19th Jun 2012Filter by DropdownsI couldn't get that script to automagically create full select option lists of my column data. I ended up just writing a small script to generate it on the server before serving the web page and then hooking an oTable.fnFilter() function to the onChange event handler for the different selects.