New to Telerik UI for ASP.NET AJAX? Start a free 30-day trial
get_allowMultiRowSelection()
Updated over 6 months ago
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:
JavaScript
function getMultiRowSelection() {
var grid = $find("<%=RadGrid1.ClientID %>");
alert(grid.get_allowMultiRowSelection());
}