Events in ASP.NET MVC Chat UI control

16 Dec 20241 minute to read

This section describes the Chat UI events that will be triggered when appropriate actions are performed. The following events are available in the Chat UI control.

Created

The Chat UI control triggers the Created event when the control rendering is completed.

@using Syncfusion.EJ2.InteractiveChat

<div style="height:380px; width:450px">
    @Html.EJS().ChatUI("chatUser").Created("onCreated").Render()
</div>

<script>
    function onCreated() {
        // your required action here..
    }
</script>
public ActionResult Created()
{
    return View();
}

Sending message

The MessageSend event is triggered before sending a message in the Chat UI control.

@using Syncfusion.EJ2.InteractiveChat

<div style="height:380px; width:450px">
    @Html.EJS().ChatUI("chatUser").MessageSend("MessageSend").Render()
</div>

<script>
    function MessageSend() {
        // your required action here..
    }
</script>
public ActionResult MessageSend()
{
    return View();
}

User typing

The UserTyping event is triggered when the user is typing a message in the Chat UI control.

@using Syncfusion.EJ2.InteractiveChat

<div style="height:380px; width:450px">
    @Html.EJS().ChatUI("chatUser").UserTyping("UserTyping").Render()
</div>

<script>
    function UserTyping() {
        // your required action here..
    }
</script>
public ActionResult UserTyping()
{
    return View();
}