Another! jqGrid question.. search not working
Same one as my previous question, but this time another problem - the search box doesnt appear when the search i开发者_开发问答con is clicked... it worked yesterday, but not any more! http://sysport.co.uk/admin/grid/TEST.php
Should work the same as: trirand.com/blog/jqgrid/jqgrid.html
Left hand side click new in 3.7 -> Multiple Search...
Really baffled me! It uses jquery-ui
It seems to me that you should change the list of the JavaScript files loaded from
<script src="js/jquery-1.4.4.min.js" type="text/javascript"></script>
<script src="js/jquery-ui-1.8.8.custom.min.js" type="text/javascript"></script>
<script src="js/jquery.jqGrid.min.js" type="text/javascript"></script>
<script src="src/grid.loader.js" type="text/javascript"></script>
to
<script src="js/jquery-1.4.4.min.js" type="text/javascript"></script>
<script src="js/jquery-ui-1.8.8.custom.min.js" type="text/javascript"></script>
<script src="js/i18n/grid.locale-en.js" type="text/javascript"></script>
<script src="js/jquery.jqGrid.min.js" type="text/javascript"></script>
or
<script src="js/jquery-1.4.4.min.js" type="text/javascript"></script>
<script src="js/jquery-ui-1.8.8.custom.min.js" type="text/javascript"></script>
<script src="src/grid.loader.js" type="text/javascript"></script>
The file i18n/grid.locale-en.js
must be loaded before jquery.jqGrid.min.js
. The file src/grid.loader.js
on the other side contain the same files which are already included in the jquery.jqGrid.min.js
plus i18n/grid.locale-en.js
(see developer version of jqGrid). Including two versions of jqGrid can follow to unpredictable results.
精彩评论