filterfn null

filterfn null

josh10josh10 Posts: 10Questions: 0Answers: 0
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

  • jadymitchelljadymitchell Posts: 11Questions: 0Answers: 0
    Did you ever find an answer for this? I'm having the same issue.
  • nm_alexnm_alex Posts: 26Questions: 0Answers: 0
    Isn't this the same as doing:

    [code]
    oTable.fnFilter( '^$', 4, true, false );
    [/code]
This discussion has been closed.