ListBoxEventBuilder

Methods

Add(System.String)

Fires before an item is added to the ListBox.The function context of the event handler (available through the this keyword) that will be set to the widget instance.

For more information see Add event.

Parameters

handler - System.String

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

Example

Razor
 
             @( Html.Kendo().ListBox()
                   .Name("listBox")
                   .Events(events => events
                       .Add("handler")
                   )
            )
             

Add(System.Func)

Fires before an item is added to the ListBox.The function context of the event handler (available through the this keyword) that will be set to the widget instance.

For more information see Add event.

Parameters

handler - System.Func<Object,Object>

The handler code wrapped in a text tag.

Example

Razor
 
             @( Html.Kendo().ListBox()
                   .Name("listBox")
                   .Events(events => events
                       .Add(@<text>
                         function(ev) {
                           //event handling code
                         }
                        </text>)
                   )
            )
             

Change(System.String)

Fires when the ListBox selection has changed.The function context of the event handler (available through the this keyword) that will be set to the widget instance.

For more information see Change event.

Parameters

handler - System.String

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

Example

Razor
 
             @( Html.Kendo().ListBox()
                   .Name("listBox")
                   .Events(events => events
                       .Change("handler")
                   )
            )
             

Change(System.Func)

Fires when the ListBox selection has changed.The function context of the event handler (available through the this keyword) that will be set to the widget instance.

For more information see Change event.

Parameters

handler - System.Func<Object,Object>

The handler code wrapped in a text tag.

Example

Razor
 
             @( Html.Kendo().ListBox()
                   .Name("listBox")
                   .Events(events => events
                       .Change(@<text>
                         function(ev) {
                           //event handling code
                         }
                        </text>)
                   )
            )
             

DataBound(System.String)

Fires when the ListBox has received data from the data source and is already rendered.The function context of the event handler (available through the this keyword) that will be set to the widget instance.

For more information see DataBound event.

Parameters

handler - System.String

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

Example

Razor
 
             @( Html.Kendo().ListBox()
                   .Name("listBox")
                   .Events(events => events
                       .DataBound("handler")
                   )
            )
             

DataBound(System.Func)

Fires when the ListBox has received data from the data source and is already rendered.The function context of the event handler (available through the this keyword) that will be set to the widget instance.

For more information see DataBound event.

Parameters

handler - System.Func<Object,Object>

The handler code wrapped in a text tag.

Example

Razor
 
             @( Html.Kendo().ListBox()
                   .Name("listBox")
                   .Events(events => events
                       .DataBound(@<text>
                         function(ev) {
                           //event handling code
                         }
                        </text>)
                   )
            )
             

DragStart(System.String)

Fires when the dragging of the ListBox items starts.

For more information see DragStart event.

Parameters

handler - System.String

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

Example

Razor
 
             @( Html.Kendo().ListBox()
                   .Name("listBox")
                   .Events(events => events
                       .DragStart("handler")
                   )
            )
             

DragStart(System.Func)

Fires when the dragging of the ListBox items starts.

For more information see DragStart event.

Parameters

handler - System.Func<Object,Object>

The handler code wrapped in a text tag.

Example

Razor
 
             @( Html.Kendo().ListBox()
                   .Name("listBox")
                   .Events(events => events
                       .DragStart(@<text>
                         function(ev) {
                           //event handling code
                         }
                        </text>)
                   )
            )
             

Drag(System.String)

Fires when the placeholder of the ListBox changes its position.

For more information see Drag event.

Parameters

handler - System.String

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

Example

Razor
 
             @( Html.Kendo().ListBox()
                   .Name("listBox")
                   .Events(events => events
                       .Drag("handler")
                   )
            )
             

Drag(System.Func)

Fires when the placeholder of the ListBox changes its position.

For more information see Drag event.

Parameters

handler - System.Func<Object,Object>

The handler code wrapped in a text tag.

Example

Razor
 
             @( Html.Kendo().ListBox()
                   .Name("listBox")
                   .Events(events => events
                       .Drag(@<text>
                         function(ev) {
                           //event handling code
                         }
                        </text>)
                   )
            )
             

Drop(System.String)

Fires when a ListBox item is dropped over one of the drop targets.

For more information see Drop event.

Parameters

handler - System.String

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

Example

Razor
 
             @( Html.Kendo().ListBox()
                   .Name("listBox")
                   .Events(events => events
                       .Drop("handler")
                   )
            )
             

Drop(System.Func)

Fires when a ListBox item is dropped over one of the drop targets.

For more information see Drop event.

Parameters

handler - System.Func<Object,Object>

The handler code wrapped in a text tag.

Example

Razor
 
             @( Html.Kendo().ListBox()
                   .Name("listBox")
                   .Events(events => events
                       .Drop(@<text>
                         function(ev) {
                           //event handling code
                         }
                        </text>)
                   )
            )
             

DragEnd(System.String)

Fires when the dragging of the item ends but before its position is changed in the DOM.

For more information see DragEnd event.

Parameters

handler - System.String

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

Example

Razor
 
             @( Html.Kendo().ListBox()
                   .Name("listBox")
                   .Events(events => events
                       .DragEnd("handler")
                   )
            )
             

DragEnd(System.Func)

Fires when the dragging of the item ends but before its position is changed in the DOM.

For more information see DragEnd event.

Parameters

handler - System.Func<Object,Object>

The handler code wrapped in a text tag.

Example

Razor
 
             @( Html.Kendo().ListBox()
                   .Name("listBox")
                   .Events(events => events
                       .DragEnd(@<text>
                         function(ev) {
                           //event handling code
                         }
                        </text>)
                   )
            )
             

Remove(System.String)

Fires before an item is removed from the ListBox.The function context of the event handler (available through the this keyword) that will be set to the widget instance.

For more information see Remove event.

Parameters

handler - System.String

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

Example

Razor
 
             @( Html.Kendo().ListBox()
                   .Name("listBox")
                   .Events(events => events
                       .Remove("handler")
                   )
            )
             

Remove(System.Func)

Fires before an item is removed from the ListBox.The function context of the event handler (available through the this keyword) that will be set to the widget instance.

For more information see Remove event.

Parameters

handler - System.Func<Object,Object>

The handler code wrapped in a text tag.

Example

Razor
 
             @( Html.Kendo().ListBox()
                   .Name("listBox")
                   .Events(events => events
                       .Remove(@<text>
                         function(ev) {
                           //event handling code
                         }
                        </text>)
                   )
            )
             

Reorder(System.String)

Fires when ListBox items are reordered.

For more information see Reorder event.

Parameters

handler - System.String

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

Example

Razor
 
             @( Html.Kendo().ListBox()
                   .Name("listBox")
                   .Events(events => events
                       .Reorder("handler")
                   )
            )
             

Reorder(System.Func)

Fires when ListBox items are reordered.

For more information see Reorder event.

Parameters

handler - System.Func<Object,Object>

The handler code wrapped in a text tag.

Example

Razor
 
             @( Html.Kendo().ListBox()
                   .Name("listBox")
                   .Events(events => events
                       .Reorder(@<text>
                         function(ev) {
                           //event handling code
                         }
                        </text>)
                   )
            )