Completed
Last Updated: 11 Aug 2021 14:48 by ADMIN
Release R3 2021
Created by: Marcel
Comments: 1
Category: Chat
Type: Bug Report
0

Steps to repro:

1. Go to https://demos.telerik.com/aspnet-ajax/chat/toolbar/defaultcs.aspx

2. Show the toolbar with the ellipses

3. Enter enough messages so that the scroll is shown and continue to enter

4. The toolbar drop down on each click of an icon

See the attached video for more information.

Completed
Last Updated: 11 Jun 2020 15:35 by ADMIN
Release R2 2020 SP1

Workaround:

Placing the script below under the ScriptManager of the page:

kendo.ui.Chat.fn._resetToolbarButtons = function (j) {
    var k = this.wrapper.find(".k-toolbar-box");
    if (!k.is(":visible")) {
        k.show();
    }
    if (j.toolbar != false && "buttons" in j.toolbar) {
        this.options.toolbar.buttons = j.toolbar.buttons;
    }
}

Reproduction:

<telerik:RadChat runat="server" ID="RadChat1" Height="400px">
    <ClientEvents OnLoad="OnLoad"  />
</telerik:RadChat>
<script>
    function OnLoad(sender, args) {    
        sender.set_user({});
    }
</script>