1
0
mirror of https://github.com/DataTables/DataTables.git synced 2025-01-18 11:52:11 +01:00

Small documentation update for fnGetNodes to suggest that $ should be used

This commit is contained in:
Allan Jardine 2011-12-15 14:44:50 +00:00
parent fbc0877c94
commit 8e224fec14
2 changed files with 6 additions and 2 deletions

View File

@ -5346,7 +5346,9 @@
/**
* The the TR nodes that are used in the table's body
* Get an array of the TR nodes that are used in the table's body. Note that you will
* typically want to use the '$' API method in preference to this as it is more
* flexible.
* @param {int} [iRow] Optional row index for the TR element you want
* @returns {array|node} If iRow is undefined, returns an array of all TR elements
* in the table's body, or iRow is defined, just the TR element requested.

View File

@ -642,7 +642,9 @@ this.fnGetData = function( mRow, iCol )
/**
* The the TR nodes that are used in the table's body
* Get an array of the TR nodes that are used in the table's body. Note that you will
* typically want to use the '$' API method in preference to this as it is more
* flexible.
* @param {int} [iRow] Optional row index for the TR element you want
* @returns {array|node} If iRow is undefined, returns an array of all TR elements
* in the table's body, or iRow is defined, just the TR element requested.