New to Telerik UI for ASP.NET AJAX? Start a free 30-day trial
OnActionClick
The OnActionClick client-side event fires when an action button is clicked inside an attachment template, or when a suggestedAction is clicked. Equal to the actionClick event of the underlying Kendo UI Chat widget.
The event handler receives two parameters:
- The Chat instance firing the event.
- An object with the following methods:
get_text()
- the text value of the clicked action button;get_sender()
- the Kendo UI Chat widget instance which fired the event;
ASPNET
<script type="text/javascript">
function оnActionClick(sender, args) {
var chat = sender;
var text = args.get_text();
}
</script>
<telerik:RadChat runat="server" ID="RadChat1">
<ClientEvents OnActionClick="оnActionClick" />
</telerik:RadChat>