EditorEventBuilder
Defines the fluent API for configuring the Kendo UI Editor for ASP.NET MVC events.
Methods
Change(System.String)
Fires when Editor is blurred and its content has changed.
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 Editor is blurred and its content has changed.
For more information see Change event.
Parameters
handler - System.Func<Object,Object>
The handler code wrapped in a text tag.
Execute(System.String)
Fires when an Editor 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.
Execute(System.Func)
Fires when an Editor command is executed.
For more information see Execute event.
Parameters
handler - System.Func<Object,Object>
The handler code wrapped in a text tag.
Keydown(System.String)
Fires when the user depresses a keyboard key. Triggered multiple times if the user holds the key down.
For more information see Keydown event.
Parameters
handler - System.String
The name of the JavaScript function that will handle the keydown event.
Keydown(System.Func)
Fires when the user depresses a keyboard key. Triggered multiple times if the user holds the key down.
For more information see Keydown event.
Parameters
handler - System.Func<Object,Object>
The handler code wrapped in a text tag.
Keyup(System.String)
Fires when the user releases a keyboard key.
For more information see Keyup event.
Parameters
handler - System.String
The name of the JavaScript function that will handle the keyup event.
Keyup(System.Func)
Fires when the user releases a keyboard key.
For more information see Keyup event.
Parameters
handler - System.Func<Object,Object>
The handler code wrapped in a text tag.
Paste(System.String)
Fires before the content is pasted in the Editor.
For more information see Paste event.
Parameters
handler - System.String
The name of the JavaScript function that will handle the paste event.
Paste(System.Func)
Fires before the content is pasted in the Editor.
For more information see Paste event.
Parameters
handler - System.Func<Object,Object>
The handler code wrapped in a text tag.
PdfExport(System.String)
Fired when the user clicks the "Export to PDF" toolbar button.
For more information see PdfExport event.
Parameters
handler - System.String
The name of the JavaScript function that will handle the pdfExport event.
PdfExport(System.Func)
Fired when the user clicks the "Export to PDF" toolbar button.
For more information see PdfExport event.
Parameters
handler - System.Func<Object,Object>
The handler code wrapped in a text tag.
Select(System.String)
Fires when the Editor selection has changed.
For more information see Select event.
Parameters
handler - System.String
The name of the JavaScript function that will handle the select event.
Select(System.Func)
Fires when the Editor selection has changed.
For more information see Select event.
Parameters
handler - System.Func<Object,Object>
The handler code wrapped in a text tag.