hi allen. I am working on upgrading one of my apps to DT1.10. I am having a problem searching for boolean values in a column.
in 1.9.4 when i created my datatable, i assigned it to a variable called rTable and called rTable.fnFilter("false", 1); to find all rows where column 1 was false. In 1.10 i am calling rTable.column(1).search('false').draw();
column.search.draw works fine in 1.10 for strings - it just doesn't seem to work for bools - i have tried toggling case sensitivity, passing the value (false) vs the string ("false") and no luck. how should i be filtering this in 1.10?