fnFindCellRowIndexes and fnFindCellRowNodes: Choosing multiple columns

fnFindCellRowIndexes and fnFindCellRowNodes: Choosing multiple columns

scjohnson09scjohnson09 Posts: 1Questions: 0Answers: 0
edited November 2013 in Plug-ins
I couldn't find this topic anywhere, so figured I post it after figuring it out.
I wanted to limit my search to 2 columns using fnFindCellRowIndexes and saw that the plugin did not allow you to pass an array. I went ahead and updated my version of the plugin (incredibly easy) to take an array of rows. Here is the additional condition that goes into the if block.

fnFindCellRowNodes:
[code]
else if ( Object.prototype.toString.call( iColumn ) === '[object Array]' ) {
for ( j=0, jLen=iColumn.length ; j

Replies

  • allanallan Posts: 61,716Questions: 1Answers: 10,108 Site admin
    Very nice! Thanks for sharing this with us :-)

    Allan
This discussion has been closed.