2011-07-22 125 views
0

我想補充的導航欄上的jqGrid我喜歡這裏:http://www.trirand.com/jqgridwiki/lib/exe/fetch.php?media=wiki:navigator1.png的jQuery jqGrid的添加導航欄(搜索,刪除,添加ECC)

 jQuery("#tabImprese").jqGrid({ 
         url:'retrieve/imprese', 
         mtype:"POST", 
         postData: { limit:'10'}, 
         datatype: "json", 
         height: 150, 
         ..... 
         .... 
        }).navGrid('#tabImprese', 
        {}, //options 
        {reloadAfterSubmit:false}, // edit options 
        {reloadAfterSubmit:false}, // add options 
        {reloadAfterSubmit:false}, // del options 
        {} // search options 
       ); 

這是我的代碼,但在我的網頁我看不到在Imprese選項卡中,您可以在 http://mongolera.dyndns.biz/projects/gestionalePreventivi/index.html 中看到任何內容。

出了什麼問題? 謝謝。

回答

1

您使用navGrid('#tabImprese',...);而不是navGrid('#pagerImprese',...);

相關問題