fnUpdate is throwing an error on a simple call
fnUpdate is throwing an error on a simple call
I have a data table with id "partslist". I am trying to set a value in a column:
partslist.fnUpdate(note,row,4);
I have verified that note is not null and row is 3. However, the following error is thrown:
oData is undefined
and this is the line that it points to, line 6009 in dataTables 1.8.2:
if ( oData.nTr !== null )
Has anyone else seen this?
partslist.fnUpdate(note,row,4);
I have verified that note is not null and row is 3. However, the following error is thrown:
oData is undefined
and this is the line that it points to, line 6009 in dataTables 1.8.2:
if ( oData.nTr !== null )
Has anyone else seen this?
This discussion has been closed.
Replies
I've just replied to your PM about this. I'll post back here when we've got it figured out so anyone else hitting this problem can also benefit :-).
Regards,
Allan
1.9.1v
i debug this problem on 1.9.1v :
At this line : 4528
Change :
if ( iIndividualRow !== undefined )
{
iStart = iIndividualRow;
iEnd = iIndividualRow+1;
}
To :
if ( iIndividualRow !== undefined )
{
iStart = iIndividualRow;
iEnd = parseInt(iIndividualRow)+1;
}
And it's work for me.
Have a good day.
Allan