FormEventBuilder
Defines the fluent API for configuring the Kendo UI Form for ASP.NET MVC events.
Methods
Validate(System.String)
Fired when the validation of the entire form completes.
For more information see Validate event.
Parameters
handler - System.String
The name of the JavaScript function that will handle the validate event.
Validate(System.Func)
Fired when the validation of the entire form completes.
For more information see Validate event.
Parameters
handler - System.Func<Object,Object>
The handler code wrapped in a text tag.
ValidateField(System.String)
Fired when the validation state of a field changes.
For more information see ValidateField event.
Parameters
handler - System.String
The name of the JavaScript function that will handle the validateField event.
ValidateField(System.Func)
Fired when the validation state of a field changes.
For more information see ValidateField event.
Parameters
handler - System.Func<Object,Object>
The handler code wrapped in a text tag.
Change(System.String)
Triggered when the form model is updated.
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)
Triggered when the form model is updated.
For more information see Change event.
Parameters
handler - System.Func<Object,Object>
The handler code wrapped in a text tag.
Submit(System.String)
Triggered when the form is submitted.
For more information see Submit event.
Parameters
handler - System.String
The name of the JavaScript function that will handle the submit event.
Submit(System.Func)
Triggered when the form is submitted.
For more information see Submit event.
Parameters
handler - System.Func<Object,Object>
The handler code wrapped in a text tag.
Clear(System.String)
Triggered when the form is cleared.
For more information see Clear event.
Parameters
handler - System.String
The name of the JavaScript function that will handle the clear event.
Clear(System.Func)
Triggered when the form is cleared.
For more information see Clear event.
Parameters
handler - System.Func<Object,Object>
The name of the JavaScript function that will handle the clear event.