debug the results in Custom column filtering

debug the results in Custom column filtering

SivaGSivaG Posts: 2Questions: 0Answers: 0
edited June 2013 in General
@allan I am using custom column filtering.I need to know how to check the Returned search results after using custom column filtering.Beacuse it always return 0 results.

My code:
function FilterTable(Name,Type){
$('#tableRows').dataTable().fnFilter(Name, 1, true, false);
$('#tableRows').dataTable().fnFilter(state, 2, Type, false);
alert($('#tableRows').dataTable());
}

It returns 0 results always.It means empty alert came in the result.Is it possible to debug the results or how to check the results after values passing in fnFilter?
This discussion has been closed.