c# - How to merge the search box in first row and first column to complete row i gridview? -
below code used adding search filter grid view. happens present code search box in first row , first column, want show search box complete row instead of showing in first column. how can this?
jquery code search box-
<script type="text/javascript"> $(function () { $('.search_textbox').each(function (i) { $(this).quicksearch("[id*=gridview1] tr:not(:has(th))", { 'testquery': function (query, txt, row) { return $(row).children(":eq(" + + ")").text().tolowercase().indexof(query[0].tolowercase()) != -1; } }); }); }); </script>
Comments
Post a Comment