TileLayoutReorderableSettingsBuilder

Methods

ClickMoveClick(System.Boolean)

Determines whether the click move click interaction would be enabled as an alternative of the drag and drop reorder. By default the alternative is enabled.

Parameters

value - System.Boolean

The value for ClickMoveClick

RETURNS

Returns the current TileLayoutReorderableSettingsBuilder instance.

Example

Razor
 
            @(Html.Kendo().TileLayout()
               .Name("tileLayout")
               .Reorderable(r => r.ClickMoveClick(true))
             )