I need to search on the DataTable and return true if a particular "string" has been found across the table. As starter I have this. But it keeps on returning true and the value is always "found" even if there is nothing like it in the table. What am I doing wrong ?
if(table.columns().search("ddd"))
{
alert("found");
return true;
}
else
{
alert("not found");
return false;
}