2014-07-15 51 views
0

每次我加載jqGrid的表我想補充一個在頂部「格」爲表內搜索(已貼在計算器的解決方案)後:如何讓搜索文本重新加載jqGrid的表

$('#t_' + $.jgrid.jqID($grid[0].id)) 
.append($("<div><label for=\"globalSearchText\">Global search in grid for:&nbsp;" + 
    "</label><input id=\"globalSearchText\" type=\"text\"></input>&nbsp;" + 
    "<button id=\"globalSearch\" type=\"button\">Search</button></div>")); 

的搜索效果很好。問題是如果加載頁面搜索區域將變空。即使在加載頁面之後,有沒有辦法保持SearchText?

+0

您可以將搜索參數發送回客戶端並將其設置在您的搜索字段中。 –

+0

您必須設置「輸入」值以匹配您的搜索查詢。 – moatist

回答

0
You can use cookies for doing same. 

See code below. 
<script> 

$(document).ready(function(){ 

     $("#gs_Customer").blur(function(){ 
      var searchVal = $("#gs_Customer").val(); 
      alert(searchVal); 
      //here you can set javascript cookies 
     }); 

     $("#gs_Customer").val(searchVal); // Here you can get search text value from cookies. 
}); 
</script>