Returns an array of rows representing header row in the C1GridView control.

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

Syntax

JavaScript
function get_headerRow();

Field Value

An array of rows or null if C1GridView control does not have header row.

Remarks

Size of returning array is always two. To iterate the cells of the array use IterateCells(array<TableRowElement>[]()[][], CellCallback, Object) method.

C1GridView may have more than one header row, this property only returns the first one. To get access to all header rows use the HeaderRows property.

See Also