get the first td values on selected rows
get the first td values on selected rows
Hi to all,
Using TableTools I try to get the values of selected rows on a specific column but I do not find how to achieve this
[code]
"fnClick": function(nButton, oConfig, oFlash) {
var oTT = TableTools.fnGetInstance( 'faculties' );
var aSelectedTrs = oTT.fnGetSelected();
var tds = $(aSelectedTrs).eq(0).find('td');
alert(tds);
}
[/code]
I would like to get the returned value on first td
Using TableTools I try to get the values of selected rows on a specific column but I do not find how to achieve this
[code]
"fnClick": function(nButton, oConfig, oFlash) {
var oTT = TableTools.fnGetInstance( 'faculties' );
var aSelectedTrs = oTT.fnGetSelected();
var tds = $(aSelectedTrs).eq(0).find('td');
alert(tds);
}
[/code]
I would like to get the returned value on first td
This discussion has been closed.
Replies
Then you could just loop over the array and get the data you need.
Allan