≡
×
Plus
Manual
Examples
Reference
Download
Blog
Community
Support
filterfn null
filterfn null
josh10
Posts: 10
Questions: 0
Answers: 0
March 2010
edited March 2010
in
General
I may be missing something but I am trying to filter an individual column to just display rows that have a null value
Here is my code which is giving me errors
[code]oTable.fnFilter( null, 4 )[/code]
Replies
jadymitchell
Posts: 11
Questions: 0
Answers: 0
February 2011
Did you ever find an answer for this? I'm having the same issue.
nm_alex
Posts: 26
Questions: 0
Answers: 0
February 2011
Isn't this the same as doing:
[code]
oTable.fnFilter( '^$', 4, true, false );
[/code]
This discussion has been closed.
Replies
[code]
oTable.fnFilter( '^$', 4, true, false );
[/code]