SortableCursorOffsetSettingsBuilder
Methods
Top(System.Int32)
Sets the top position.
Parameters
top - System.Int32
Numeric value representing the top offset.
Example
@(Html.Kendo().Sortable()
.For("#element")
.CursorOffset(co => co.Top(12))
)
Left(System.Int32)
Sets the left position.
Parameters
left - System.Int32
Numeric value representing the left offset.
Example
@(Html.Kendo().Sortable()
.For("#element")
.CursorOffset(co => co.Left(12))
)