Sequentially iterates the cells in a rows array.

Namespace:  C1.Web.UI.Controls.C1GridView
Assembly:  C1GridViewClient (in C1GridViewClient.dll)

Syntax

JavaScript
C1.Web.UI.Controls.C1GridView.C1GridViewRowsAccessor.iterateCells = function(rows, callback, param);

Parameters

rows
Type: array<TableRowElement>[]()[][]
Array of rows to be iterated.
callback
Type: C1.Web.UI.Controls.C1GridView..::..CellCallback
Delegate that will be called each time a new cell is reached.
param
Type: System..::..Object
Parameter that can be handled within the callback delegate.

Examples

Suppose rows is an array containing the following data: [ ['a', 'b'], ['c', 'd', 'e'] ] When it is iterated it will sequentially return: 'a', 'b', 'c', 'd', 'e'

See Also