This line causes my javascript to completely stop.
Does anyone see what is wrong with it?
rowindex has a value of 12 at this time and there are like 19 rows in the grid.
$(“#jqxgrid”).jqxGrid(‘setcellvalue’, rowindex, ‘Decedent L Name’, “testme”);
Here is how I setup the grid:
$(“#jqxgrid”).jqxGrid(
{
width: ‘100%’,
height: ‘100%’,
source: dataAdapter,
showfilterrow: true,
filterable: true,
theme: ‘darkblue’,
columns: [
{ text: ‘UniqueID’, datafield: ‘UniqueID’, width: 150, cellsalign: ‘left’},
{ text: ‘Decedent L Name’, datafield: ‘DecedentLastName’, width: 150, cellsalign: ‘left’},
{ text: ‘Decedent F Name’, datafield: ‘DecedentFirstName’, width: 150, cellsalign: ‘left’ },
{ text: ‘Dt of Death’, datafield: ‘DateofDeath’, width: 100,
cellsformat: ‘d’, cellsalign: ‘left’ },
{ text: ‘Dt of Birth’, datafield: ‘DateofBirth’, width: 100,
cellsformat: ‘d’, cellsalign: ‘left’ },
{ text: ‘Purch L Name’, datafield: ‘PurchaserLastName’, width: 150 },
{ text: ‘Purch F Name’, datafield: ‘PurchaserFirstName’, width: 150 },
{ text: ‘Section’, datafield: ‘Section’, width: 50 },
{ text: ‘Block’, datafield: ‘Block’, width: 50 },
{ text: ‘Lot’, datafield: ‘Lot’, width: 50 },
{ text: ‘Space’, datafield: ‘Space’, width: 50 }
],
pager: function (pagenum, pagesize, oldpagenum)
{
// callback called when a page or page size is changed.
}
});