New to Telerik UI for ASP.NET AJAX? Start a free 30-day trial
set_visible()
The method toggles the visibility of an item on and off. It takes a boolean value indicating whether the item will be visible or not.
Example:
JavaScript
function GridCreated() {
var masterTable = $find("<%=RadGrid1.ClientID%>").get_masterTableView();
var dataItem = masterTable.get_dataItems()[0];
dataItem.set_visible(false);
}