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

Accessing RadGrid Client-Side

Get Client-side Reference to a Control Object

Finding a RadGrid that has a specific ID, in this case RadGrid1.

Using the $find() method

function myFunction(sender, args) {
    var grid = $find('<%= RadGrid1.ClientID %>');
}

Using the $telerik.findControl() method

function myFunction(sender, args) {
    var grid = $telerik.findControl(document, "RadGrid1");
}

Using Document.querySelector()

function myFunction(sender, args) {
    var gridElement = document.querySelector(".RadGrid[id$='RadGrid1']");

    // Checkpoint to ensure the Element exists and it has a property called "control", if so, cast the Element to a RadGrid JavaScript object.
    if (gridElement && gridElement.control) {
        var grid = gridElement.control;
    }
}

Using jQuery

function myFunction(sender, args) {
    var gridElement = $telerik.$('.RadGrid[id$="RadGrid1"]')[0];

    // Checkpoint to ensure the Element exists and it has a property called "control", if so, cast the Element to a RadGrid JavaScript object.
    if (gridElement && gridElement.control) {
        var grid = gridElement.control;
    }
}

Find one or more Grid's without specifying an ID

Access Multiple RadGrid instances with Document.querySelector()

function myFunction(sender, args) {
    var gridElements = document.querySelectorAll("div.RadGrid");

    for (var i = 0; i < gridElements.length; i++) {
        var gridElement = gridElements[i];

        // Checkpoint to ensure the Element exists and it has a property called "control", if so, cast the Element to a RadGrid JavaScript object.
        if (gridElement && gridElement.control) {
            var grid = gridElement.control;

        }
    }
}

Access Multiple RadGrid instances with jQuery

function myFunction(sender, args) {
    var $gridElements = $telerik.$('.RadGrid');

    for (var i = 0; i < $gridElements.length; i++) {
        var gridElement = $gridElements[i];

        // Checkpoint to ensure the Element exists and it has a property called "control", if so, cast the Element to a RadGrid JavaScript object.
        if (gridElement && gridElement.control) {
            var grid = gridElement.control;

        }
    }
}

See Also

In this article