ASPxClientGridView.MakeRowVisible(visibleIndex) Method
In This Article
Scrolls the view to the specified row.
#Declaration
TypeScript
MakeRowVisible(
visibleIndex: number
): void
#Parameters
Name | Type | Description |
---|---|---|
visible |
number | The row’s visible index. |
#Remarks
The number of rows displayed on a page is specified by the ASPxGridViewPagerSettings.PageSize property. However, you can reduce the grid’s height and enable vertical scrolling. To do this, enable the scroll bar via the ASPxGridSettings.VerticalScrollBarMode property and specify the height, using the ASPxGridSettings.VerticalScrollableHeight property.
The MakeRowVisible method allows you to scroll the grid to make the required row visible on screen. This can also be done on the server via the ASPxGridBase.ScrollToVisibleIndexOnClient method.
Note
- If virtual scrolling is enabled, the Make
Row method is not in effect.Visible - If endless paging is enabled, the Make
Row method is in effect for uploaded rows only.Visible
See Also