Hi all,
bellow i m writing the code snippet which gives the error as
Microsoft JScript runtime error: Object doesn't support this property or method,
what to do.I m trying for jqgrid in asp.net with MVC without creating Helper.
<script type="text/javascript">
jQuery(document).ready(function() {
jQuery("#list").jqGrid({
url:'/jqGrid/GridData/',
datatype: 'json',
mtype: 'GET',
colNames: ['Id', 'Votes', 'Title'],
colModel: [
{ name: 'Id', index: 'Id', width: 40, align: 'left' },
{ name: 'Votes', index: 'Votes', width: 40, align: 'left' },
{ name: 'Title', index: 'Title', width: 200, align: 'left'}],
pager: jQuery('#pager'),
rowNum: 10,
rowList: [5, 10, 20, 50],
sortname: 'Id',
sortorder: "desc",
viewrecords: true,
imgpath: '/scripts/themes/coffee/images',
caption: 'My first grid'
});
});
</script>
please help