New to Telerik UI for ASP.NET AJAX? Start a free 30-day trial
OnScroll
Updated over 6 months ago
Telerik.Web.UI.GridScrollEventArgs OnScroll Property
To get or set property values for client API properties, you must call property accessor methods that are named with the get_ and set_ prefixes. For example, to get or set a value for a property such as cancel, you call the get_cancel or set_cancel.
This event is fired when you scroll the grid.
| Fired by | RadGrid | 
|---|---|
| Arguments | scrollTop - the vertical position of the scrollscrollLeft - the horizontal position of the scrollscrollControl - the div element of the scrollisOnTop - whether the scroll is on topisOnBottom - whether the scroll is on bottom | 
| Can be canceled | No | 
Example:
ASP.NET
<telerik:RadGrid RenderMode="Lightweight" ID="RadGrid1" runat="server">
    <ClientSettings>
        <ClientEvents OnScroll="Scroll" />
    </ClientSettings>
</telerik:RadGrid>JavaScript
function Scroll(sender, eventArgs) {
    alert(eventArgs.get_scrollTop());
    alert(eventArgs.get_scrollLeft());
    alert(eventArgs.get_scrollControl());
    alert(eventArgs.get_isOnTop());
    alert(eventArgs.get_isOnBottom());
}