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

get_visible()

Property which determines whether the grid is visible on the client or not (style="display:none").

get_visible()

Example:

function getVisibleState(sender, args) {
    var grid = $find("<%=RadGrid1.ClientID %>");
    var isVisibleOnClient = grid.get_visible();
    alert(isVisibleOnClient);
}
In this article