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

SortableEventBuilder

Methods

Start(System.String)

Fires when sortable item drag starts.

For more information see Start event.

Parameters

handler - System.String

The name of the JavaScript function that will handle the start event.

Start(System.Func)

Fires when sortable item drag starts.

For more information see Start event.

Parameters

handler - System.Func<Object,Object>

The handler code wrapped in a text tag.

Move(System.String)

Fires when Sortable's placeholder changes its position.

For more information see Move event.

Parameters

handler - System.String

The name of the JavaScript function that will handle the move event.

Move(System.Func)

Fires when Sortable's placeholder changes its position.

For more information see Move event.

Parameters

handler - System.Func<Object,Object>

The handler code wrapped in a text tag.

End(System.String)

Fires when item dragging ends but before the item's position is changed in the DOM. This event is suitable for preventing the sort action.

For more information see End event.

Parameters

handler - System.String

The name of the JavaScript function that will handle the end event.

End(System.Func)

Fires when item dragging ends but before the item's position is changed in the DOM. This event is suitable for preventing the sort action.

For more information see End event.

Parameters

handler - System.Func<Object,Object>

The handler code wrapped in a text tag.

Change(System.String)

Fires when item is sorted and the item's position is changed in the DOM.

For more information see Change event.

Parameters

handler - System.String

The name of the JavaScript function that will handle the change event.

Change(System.Func)

Fires when item is sorted and the item's position is changed in the DOM.

For more information see Change event.

Parameters

handler - System.Func<Object,Object>

The handler code wrapped in a text tag.

Cancel(System.String)

Fires when item sorting is canceled by pressing the Escape key.

For more information see Cancel event.

Parameters

handler - System.String

The name of the JavaScript function that will handle the cancel event.

Cancel(System.Func)

Fires when item sorting is canceled by pressing the Escape key.

For more information see Cancel event.

Parameters

handler - System.Func<Object,Object>

The handler code wrapped in a text tag.

In this article
Not finding the help you need?