Row: Selecting

Row: Selecting

CHWCHW Posts: 4Questions: 0Answers: 0
edited December 2010 in General
Hi,
I'm using the code placed in the forum:
[code]
$(oTableLocal.fnGetNodes()).click( function() {
if ( $(this).hasClass('row_selected') )
$(this).removeClass('row_selected');
else
$(this).addClass('row_selected');
} );
[/code]
It Works
But if I add a new row:
fnAddData or fnAddDataAndDisplay
The routine does not select the new row.
Any ideas?

regards,
CHW
This discussion has been closed.