Estoy tratando de comenzar con el plugin de jQuery, jqGrid, sin embargo me está dando el error - "b.jgrid.jqID no es una función". Descargué el complemento de http://www.trirand.com/blog/?page_id=6 con todas las funciones incluidas y estoy haciendo referencia tanto a jquery.jqGrid.min.js como a grid.locale-en.js.jqgrid error - b.jgrid.jqID no es una función
Aquí es el html:
<table id="list"></table>
<div id="pager"></div>
y aquí está la JS:
jQuery(function() {
jQuery("#list").jqGrid({
url: '/admin/campus/getnearbybusinesses',
datatype: "json",
colNames: ['Name', 'Location'],
colModel: [
{ name: 'Name', index: 'Name', width: 150 },
{ name: 'Location', index: 'Location', width: 150 }
],
rowNum: 10,
rowList: [10, 20, 30],
pager: '#pager',
sortname: 'Name',
viewrecords: true,
sortorder: "asc",
caption: "Businesses"
});
jQuery("#list").jqGrid('navGrid', '#pager', { edit: false, add: false, del: false });
});
Problema que termina siendo que había hecho referencia a jqgrid .js primero cuando se necesita hacer referencia a grid.locale-en.js primero. – Justin
Eres mi héroe. Estuve trabajando este problema durante dos horas pensando que tenía un error en mi script. – GregB