Get data row value from row index
Get data row value from row index
sanova
Posts: 8Questions: 0Answers: 0
Hi,
i'm trying to get all values row using row index with no success.
Is there a way to do that or is it possible only with "click event" on selected row?
[code]
aData = oTable.fnGetData(indexSelectedRow);
[/code]
or something like this:
[code]
var aPos = oTable.fnGetPosition(oTable.$('tr.row_selected'));
aData = oTable.fnGetData(aPos);
[/code]
or:
[code]
aData = oTable.fnGetData(oTable.$('tr.row_selected'));
[/code]
The error is: "nNode.nodeName is undefined"
Thanks in advance
i'm trying to get all values row using row index with no success.
Is there a way to do that or is it possible only with "click event" on selected row?
[code]
aData = oTable.fnGetData(indexSelectedRow);
[/code]
or something like this:
[code]
var aPos = oTable.fnGetPosition(oTable.$('tr.row_selected'));
aData = oTable.fnGetData(aPos);
[/code]
or:
[code]
aData = oTable.fnGetData(oTable.$('tr.row_selected'));
[/code]
The error is: "nNode.nodeName is undefined"
Thanks in advance
This discussion has been closed.
Replies
[code]
aData = oTable.fnGetData(aPos);
[/code]