Checks if the row at the specified index is currently visible.
Namespace: MindFusion.DataViews
File: Grid.js
SyntaxJavaScript
Copy Code
|
|---|
function isRowVisible (row) |
Number. The row index.
Boolean. True if the row is visible, otherwise false.
ExampleThe following method outlines the row if the value of its key is bigger than 100 and brings the focus into its first cell:
JavaScript
Copy Code
|
|---|
function outlineRow(rowIndex) if( rowKey > 100) |
See Also