2013-12-20 54 views
-1

的排序我想與jquery 我寫的代碼搜索我的GridView作爲衝突jQuery中的gridview的

 $(document).ready(function() { 
     try { 

      $("#grdReq").tablesorter(); 
     } 
     catch (ex) { 
      alert(ex); 
     } 
    }); 

我得到錯誤TypeError: $(...) is null谷歌瀏覽器typeerror: cannot call method tablesort of null

請幫我解決這個

回答

0

當U與服務器控件使用ClientID工作得到控制

$("#<%=grdReq.ClientID %>") 


attribute-ends-with-selector

$("[id$='grdReq']") //without using ClientID 

您的代碼在這裏:

$(document).ready(function() { 
     try { 

      $("#<%=grdReq.ClientID %>").tablesorter(); 
     } 
     catch (ex) { 
      alert(ex); 
     } 
    }); 

GridView and TableSorter

+0

謝謝..但還是我收到同樣的錯誤 – user3094999

+0

谷歌瀏覽器我得到像類型錯誤錯誤:無法調用空 – user3094999

+0

的方法tablesort已經使用添加的tablesorter的參考? –