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

get_allowMultiRowSelection()

Property which returns a Boolean result that indicates if multiple row select is enabled. See Selecting multiple rows (client-side) topic for more details.

get_allowMultiRowSelection()

Example:

function getMultiRowSelection() {
    var grid = $find("<%=RadGrid1.ClientID %>");
    alert(grid.get_allowMultiRowSelection());     
}       
In this article