GridAllowCopyBuilder

Methods

Enabled(System.Boolean)

Enables or disables AllowCopy.

Parameters

value - System.Boolean

Example

Razor
 
             @(Html.Kendo().Grid(Model)
                .Name("Grid")
                .AllowCopy(config => config.Enabled((bool)ViewData["allowCopy"]))
            )
             

Delimeter(System.String)

Specifies whether multiple or single selection is allowed.

Parameters

value - System.String

Example

Razor
 
             @(Html.Kendo().Grid(Model)
                .Name("Grid")
                .Selectable(selection => selection.Delimeter((bool)ViewData["selectionMode"]))
            )