Search
11316 results 481-490
Forum
- 16th Apr 2013Filter by length of textYou could use a filter call of: [code] table.fnFilter( '^P\d\d\d\d$', null, false ); [/code] to do a regex filter which matches your description. Allan
- 11th Apr 2013Cannot sortor filter a dataTable when populating a table through AJAX / jSon.setting bProcessing and bServerSide to false - fixed this. bProcessing, bServerSide = true is needed for other ajax related functionality (although doesn't circumvent ajax) , but apparently it turns off the very useful client-side functionality of filter, sorting, and pagination.
- 4th Apr 2013Adding another input field next to the filter field.Nevermind... I figured it out. I just took the filter class and appended my own html next to it. :)
- 20th Mar 2013using checkboxes to filteroclientTable, oFullProductTable). however the filter affects all three of
- 20th Mar 2013Input bug in filter global searchmake note that disabling filtering didn't work in my
- 12th Mar 2013Integrate hyperlink into select filter?use a dd-menu to filter the data in the
- 10th Mar 2013Have Filter return no rows when filter string is emptyis matched by the filter. Spot on. This method
- 25th Feb 2013Filtering on datatable not always working, sometimes takes 5 letters before the filter happensusing this as a filter. In our case, we
- 15th Feb 2013Having trouble moving the Filter boxworks, but the instant filter behavior isn't working how
- 13th Feb 2013Checking data before applying filterYou'd need to use the fnGetColumnData plug-in to get the data for the column and check to see if your value is in it before then applying the filter. A $.inArray() should do the business. Regards, Allan