New to Telerik UI for ASP.NET MVC? Start a free 30-day trial
Events
The Telerik UI AIPrompt for ASP.NET MVC exposes multiple events like CommandExecute
, PromptRequest
, and more, that allow you to control the behavior of the UI component.
For a complete example on basic AIPrompt events, refer to the demo on using the events of the AIPrompt.
Handling by Handler Name
The following example demonstrates how to subscribe to events by a handler name.
Razor
@(Html.Kendo().AIPrompt()
.Name("aiprompt")
.Events(ev => ev.PromptRequest("onPromptRequest"))
... //Additional configuration
)
Handling by Template Delegate
The following example demonstrates how to subscribe to events by a template delegate.
Razor
@(Html.Kendo().AIPrompt()
.Name("aiprompt")
.Events(e => e.PromptRequest(@<text>
function() {
// Handle the AIPrompt PromptRequest event inline.
}
</text>)
)
... //Additional configuration
)