Search
11366 results 4801-4810
Forum
- 29th Sep 2012aagghh how to link a Cell to a Table?Have you tried using the filtering API method ( fnFilter )? It looks like you just need to replace the semi-colon with a pipe (|) and filter as a regular expression on the column. Allan
- 28th Sep 2012ColumnFilterWidgets server-sidea default, not a filter, and is re-selected after filtering return; } sText = $( '<div>' + sSelected
- 28th Sep 2012Custom selecttell me how to filter the table, using default
- 27th Sep 2012Columnfilter + Chrome 22 not always working (was working on Chrome 21)I'd suggest posting an issue on the column filter project page: http://code.google.com/p/jquery-datatables-column-filter/issues/list . I'm not well versed in it I'm afraid, so I don't know off the top of my head what the issue is. Allan
- 24th Sep 2012Strange behavior in IE9 with sScrollXit's redrawn and the filter returns no results and
- 24th Sep 2012Uncaught TypeError: Cannot read property 'length' of undefined jquery.datatables.js:1918if there is a filter applied to the table.
- 24th Sep 2012Datatables works on local site but doesn't work in remote siteSeems to work just fine on both pages for me :-). I can sort and filter as expected on both pages. Have you cleared your browser's cache? Allan
- 22nd Sep 2012Example for custom external DOM input field table filteringThe filter input is the unlabeled empty text input box on the right side that should work on keyup using this: [code]$('input[name=list_search]').keyup( function () { oTable.fnFilter( this.value ); } );[/code] The other dropdown filters will resort the actual queried data with ajax.
- 17th Sep 2012dataTables bSearchable not workingI still don't understand. Is the column filter add on adding filtering inputs to the columns that you don't want filtering on? That's nothing to do with DataTables - that's the column filter plug-in. Allan
- 6th Sep 2012Don't Save Search StateI needed this same feature in the latest version. Another poster recommended this: There is a plugin that clears the DataTable filter here fnFilterClear http://datatables.net/plug-ins/api ....and it worked for me - using the latest version of Datatables and the plugin.