New to Telerik UI for ASP.NET AJAX? Download free 30-day trial

get_masterTableViewFooter()

This property returns the MasterTableView footer instance for the respective grid client object.

get_masterTableViewFooter()

Example:

function getMasterTableViewFooter() {
    var grid = $find("<%=RadGrid1.ClientID %>");
    var masterTableViewFooter = grid.get_masterTableViewFooter();
}

Please, keep in mind that this property would only return a non-null value, when a footer is present in the grid (ShowFooter="true"), as well as when scrolling with static headers is enabled:

<clientsettings>
        <Scrolling AllowScroll="true" UseStaticHeaders="true" />
</clientsettings>

In all other cases, this property will return a null value.

In this article