RadControls for ASP.NET AJAX Property which determines whether the grid is visible on the client or not (style="display:none").
Example:
CopyJavascript
function getVisibleState(sender, args) {
var grid = $find("<%=RadGrid1.ClientID %>");
var isVisibleOnClient = grid.get_visible();
alert(isVisibleOnClient);
}