Reputation: 26598
I have an html page with jqgrid. This jqgrid retrieve data from a php script in json format. My problem is that if I go on this jqgrid, clicking on "Imprese" all the page become only readable and not clickable. You can see the problem here:
http://mongolera.dyndns.biz/projects/gestionalePreventivi/index.html
I have no idea about what ca be the mistake. Can you help me? Thanks.
Upvotes: 0
Views: 872
Reputation: 24125
Please make sure that you have marked "Formatter" module while downloading jqGrid script (http://www.trirand.com/blog/?page_id=6). This error usually appears when the module is not there.
Upvotes: 0
Reputation: 222017
What is the strange HTML element
<btnMailControl style="">Check</btnMailControl>
which you use? Probably you want to change it to
<button id="btnMailControl">Check</button>
Your main problem is that under URL /projects/gestionalePreventivi/js/i18n/grid.locale-en.js
you can't load grid.locale-en.js
which is important for the work of jqGrid.
I strict recommend you to include <!DOCTYPE html ...
at the beginning of the page. See here an example.
Upvotes: 2
Reputation: 10410
Try to use firebug, because you are getting the following error:
b.jgrid.formatter is undefined
Upvotes: 0