TaskBoardEventBuilder
Methods
ColumnsDataBinding(System.String)
Fired before the TaskBoard binds the columns' data source.
For more information see ColumnsDataBinding event.
Parameters
handler - System.String
The name of the JavaScript function that will handle the columnsDataBinding event.
Example
@(Html.Kendo().TaskBoard()
.Name("taskBoard")
.Events(e => e.ColumnsDataBinding("onColumnsDataBinding"))
)
ColumnsDataBinding(System.Func)
Fired before the TaskBoard binds the columns' data source.
For more information see ColumnsDataBinding event.
Parameters
handler - System.Func<Object,Object>
The handler code wrapped in a text tag.
Example
@(Html.Kendo().TaskBoard()
.Name("taskBoard")
.Events(events => events.ColumnsDataBinding(@<text>
function(e) {
// Handle the ColumnsDataBinding event inline.
}
</text>)
)
)
ColumnsDataBound(System.String)
Fired when the TaskBoard's columns are bound to their data source.
For more information see ColumnsDataBound event.
Parameters
handler - System.String
The name of the JavaScript function that will handle the columnsDataBound event.
Example
@(Html.Kendo().TaskBoard()
.Name("taskBoard")
.Events(e => e.ColumnsDataBound("onColumnsDataBound"))
)
ColumnsDataBound(System.Func)
Fired when the TaskBoard's columns are bound to their data source.
For more information see ColumnsDataBound event.
Parameters
handler - System.Func<Object,Object>
The handler code wrapped in a text tag.
Example
@(Html.Kendo().TaskBoard()
.Name("taskBoard")
.Events(events => events.ColumnsDataBound(@<text>
function(e) {
// Handle the ColumnsDataBound event inline.
}
</text>)
)
)
Select(System.String)
Fired when the user selects a card in the TaskBoard.
For more information see Select event.
Parameters
handler - System.String
The name of the JavaScript function that will handle the select event.
Example
@(Html.Kendo().TaskBoard()
.Name("taskBoard")
.Events(e => e.Select("onSelect"))
)
Select(System.Func)
Fired when the user selects a card in the TaskBoard.
For more information see Select event.
Parameters
handler - System.Func<Object,Object>
The handler code wrapped in a text tag.
Example
@(Html.Kendo().TaskBoard()
.Name("taskBoard")
.Events(events => events.Select(@<text>
function(e) {
// Handle the Select event inline.
}
</text>)
)
)
DataBinding(System.String)
Fired before the TaskBoard binds to its data source.
For more information see DataBinding event.
Parameters
handler - System.String
The name of the JavaScript function that will handle the dataBinding event.
Example
@(Html.Kendo().TaskBoard()
.Name("taskBoard")
.Events(e => e.DataBinding("onDataBinding"))
)
DataBinding(System.Func)
Fired before the TaskBoard binds to its data source.
For more information see DataBinding event.
Parameters
handler - System.Func<Object,Object>
The handler code wrapped in a text tag.
Example
@(Html.Kendo().TaskBoard()
.Name("taskBoard")
.Events(events => events.DataBinding(@<text>
function(e) {
// Handle the DataBinding event inline.
}
</text>)
)
)
DataBound(System.String)
Fired when the TaskBoard is bound to data from its data source.
For more information see DataBound event.
Parameters
handler - System.String
The name of the JavaScript function that will handle the dataBound event.
Example
@(Html.Kendo().TaskBoard()
.Name("taskBoard")
.Events(e => e.DataBound("onDataBound"))
)
DataBound(System.Func)
Fired when the TaskBoard is bound to data from its data source.
For more information see DataBound event.
Parameters
handler - System.Func<Object,Object>
The handler code wrapped in a text tag.
Example
@(Html.Kendo().TaskBoard()
.Name("taskBoard")
.Events(events => events.DataBound(@<text>
function(e) {
// Handle the DataBound event inline.
}
</text>)
)
)
DeleteCard(System.String)
Fired when the user deletes a card.
For more information see DeleteCard event.
Parameters
handler - System.String
The name of the JavaScript function that will handle the deleteCard event.
Example
@(Html.Kendo().TaskBoard()
.Name("taskBoard")
.Events(e => e.DeleteCard("onDeleteCard"))
)
DeleteCard(System.Func)
Fired when the user deletes a card.
For more information see DeleteCard event.
Parameters
handler - System.Func<Object,Object>
The handler code wrapped in a text tag.
Example
@(Html.Kendo().TaskBoard()
.Name("taskBoard")
.Events(events => events.DeleteCard(@<text>
function(e) {
// Handle the DeleteCard event inline.
}
</text>)
)
)
DeleteColumn(System.String)
Fired when the user deletes a column.
For more information see DeleteColumn event.
Parameters
handler - System.String
The name of the JavaScript function that will handle the deleteColumn event.
Example
@(Html.Kendo().TaskBoard()
.Name("taskBoard")
.Events(e => e.DeleteColumn("onDeleteColumn"))
)
DeleteColumn(System.Func)
Fired when the user deletes a column.
For more information see DeleteColumn event.
Parameters
handler - System.Func<Object,Object>
The handler code wrapped in a text tag.
Example
@(Html.Kendo().TaskBoard()
.Name("taskBoard")
.Events(events => events.DeleteColumn(@<text>
function(e) {
// Handle the DeleteColumn event inline.
}
</text>)
)
)
EditCard(System.String)
Fired when the user edits or creates a card.
For more information see EditCard event.
Parameters
handler - System.String
The name of the JavaScript function that will handle the editCard event.
Example
@(Html.Kendo().TaskBoard()
.Name("taskBoard")
.Events(e => e.EditCard("onEditCard"))
)
EditCard(System.Func)
Fired when the user edits or creates a card.
For more information see EditCard event.
Parameters
handler - System.Func<Object,Object>
The handler code wrapped in a text tag.
Example
@(Html.Kendo().TaskBoard()
.Name("taskBoard")
.Events(events => events.EditCard(@<text>
function(e) {
// Handle the EditCard event inline.
}
</text>)
)
)
EditColumn(System.String)
Fired when the user edits or creates a column.
For more information see EditColumn event.
Parameters
handler - System.String
The name of the JavaScript function that will handle the editColumn event.
Example
@(Html.Kendo().TaskBoard()
.Name("taskBoard")
.Events(e => e.EditColumn("onEditColumn"))
)
EditColumn(System.Func)
Fired when the user edits or creates a column.
For more information see EditColumn event.
Parameters
handler - System.Func<Object,Object>
The handler code wrapped in a text tag.
Example
@(Html.Kendo().TaskBoard()
.Name("taskBoard")
.Events(events => events.EditColumn(@<text>
function(e) {
// Handle the EditColumn event inline.
}
</text>)
)
)
Execute(System.String)
Fires when a command is executed.
For more information see Execute event.
Parameters
handler - System.String
The name of the JavaScript function that will handle the execute event.
Example
@(Html.Kendo().TaskBoard()
.Name("taskBoard")
.Events(e => e.Execute("onExecute"))
)
Execute(System.Func)
Fires when a command is executed.
For more information see Execute event.
Parameters
handler - System.Func<Object,Object>
The handler code wrapped in a text tag.
Example
@(Html.Kendo().TaskBoard()
.Name("taskBoard")
.Events(events => events.Execute(@<text>
function(e) {
// Handle the Execute event inline.
}
</text>)
)
)
Move(System.String)
Fired when the user moves a card.
For more information see Move event.
Parameters
handler - System.String
The name of the JavaScript function that will handle the move event.
Example
@(Html.Kendo().TaskBoard()
.Name("taskBoard")
.Events(e => e.Move("onMove"))
)
Move(System.Func)
Fired when the user moves a card.
For more information see Move event.
Parameters
handler - System.Func<Object,Object>
The handler code wrapped in a text tag.
Example
@(Html.Kendo().TaskBoard()
.Name("taskBoard")
.Events(events => events.Move(@<text>
function(e) {
// Handle the Move event inline.
}
</text>)
)
)
MoveEnd(System.String)
Fired when the user dropped a card in a column.
For more information see MoveEnd event.
Parameters
handler - System.String
The name of the JavaScript function that will handle the moveEnd event.
Example
@(Html.Kendo().TaskBoard()
.Name("taskBoard")
.Events(e => e.MoveEnd("onMoveEnd"))
)
MoveEnd(System.Func)
Fired when the user dropped a card in a column.
For more information see MoveEnd event.
Parameters
handler - System.Func<Object,Object>
The handler code wrapped in a text tag.
Example
@(Html.Kendo().TaskBoard()
.Name("taskBoard")
.Events(events => events.MoveEnd(@<text>
function(e) {
// Handle the MoveEnd event inline.
}
</text>)
)
)
MoveStart(System.String)
Fired when the user started moving a card.
For more information see MoveStart event.
Parameters
handler - System.String
The name of the JavaScript function that will handle the moveStart event.
Example
@(Html.Kendo().TaskBoard()
.Name("taskBoard")
.Events(e => e.MoveStart("onMoveStart"))
)
MoveStart(System.Func)
Fired when the user started moving a card.
For more information see MoveStart event.
Parameters
handler - System.Func<Object,Object>
The handler code wrapped in a text tag.
Example
@(Html.Kendo().TaskBoard()
.Name("taskBoard")
.Events(events => events.MoveStart(@<text>
function(e) {
// Handle the MoveStart event inline.
}
</text>)
)
)
Change(System.String)
Fired when the user changed the card order or status by dragging.
For more information see Change event.
Parameters
handler - System.String
The name of the JavaScript function that will handle the change event.
Example
@(Html.Kendo().TaskBoard()
.Name("taskBoard")
.Events(e => e.Change("onChange"))
)
Change(System.Func)
Fired when the user changed the card order or status by dragging.
For more information see Change event.
Parameters
handler - System.Func<Object,Object>
The handler code wrapped in a text tag.
Example
@(Html.Kendo().TaskBoard()
.Name("taskBoard")
.Events(events => events.Change(@<text>
function(e) {
// Handle the Change event inline.
}
</text>)
)
)
SaveCard(System.String)
Fired when the user saves a card.
For more information see SaveCard event.
Parameters
handler - System.String
The name of the JavaScript function that will handle the saveCard event.
Example
@(Html.Kendo().TaskBoard()
.Name("taskBoard")
.Events(e => e.SaveCard("onSaveCard"))
)
SaveCard(System.Func)
Fired when the user saves a card.
For more information see SaveCard event.
Parameters
handler - System.Func<Object,Object>
The handler code wrapped in a text tag.
Example
@(Html.Kendo().TaskBoard()
.Name("taskBoard")
.Events(events => events.SaveCard(@<text>
function(e) {
// Handle the SaveCard event inline.
}
</text>)
)
)
SaveColumn(System.String)
Fired when the user saves a column.
For more information see SaveColumn event.
Parameters
handler - System.String
The name of the JavaScript function that will handle the saveColumn event.
Example
@(Html.Kendo().TaskBoard()
.Name("taskBoard")
.Events(e => e.SaveColumn("onSaveColumn"))
)
SaveColumn(System.Func)
Fired when the user saves a column.
For more information see SaveColumn event.
Parameters
handler - System.Func<Object,Object>
The handler code wrapped in a text tag.
Example
@(Html.Kendo().TaskBoard()
.Name("taskBoard")
.Events(events => events.SaveColumn(@<text>
function(e) {
// Handle the SaveColumn event inline.
}
</text>)
)
)