getDataRow method
getDataRow(rownum)
Method used to get a data row for this object.
Returns
Returns a row of NxCell or null if the row is not available client side and need to be fetched with method getData.
Tip noteFor more information regarding a promise, see http://docs.angularjs.org/api/ng.$q.
Parameters
| Name | Type | Description |
|---|---|---|
| rownum | Number | The row number. |
Example
var row = this.backendApi.getDataRow(i + this.currpos);
if(row) {
html += '<tr>';