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;
Vishal JadavPosted Oct 12, 2016, 10:16 AM
Bikesh SrivastavaPosted Oct 12, 2016, 9:29 AM
Midhun TpPosted Oct 12, 2016, 7:55 AM