My code as follows
$(this).quicksearch("[id*=gridVendor] tr:not(:has(th))", {
'testQuery': function (query, txt, row) {
return $(row).children(":eq(" + 1 + ")").text().toLowerCase().indexOf(query[0].toLowerCase()) != -1;
}
}
From the above code the below line is exceeding 120 characters
return $(row).children(":eq(" + 1 + ")").text().toLowerCase().indexOf(query[0].toLowerCase()) != -1;