New to Telerik UI for ASP.NET AJAX? Start a 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:
JavaScript
function getVisibleState(sender, args) {
var grid = $find("<%=RadGrid1.ClientID %>");
var isVisibleOnClient = grid.get_visible();
alert(isVisibleOnClient);
}