Completed
Last Updated: 01 Nov 2022 11:22 by ADMIN
Release R3 2022 SP2

Add a RadSpellChecker, a MS TextBox and a MS RichTextBox to the form. Try to set the AutoSpellCheckControl to RichTextBox, but the control is missing in the drop down:

Completed
Last Updated: 21 Jan 2020 13:13 by ADMIN
Release R1 2020 SP1 (LIB 2020_1_127)

Workaround:

        private void radChat1_ItemFormatting(object sender, ChatItemElementEventArgs e)
        {
            ChatTimeSeparatorItemElement separatorElement = e.ItemElement as ChatTimeSeparatorItemElement;
            if (separatorElement != null)
            {
                if (separatorElement.Text == "TODAY")
                {
                    separatorElement.Text = "TODAY_EN";
                }
                else if (separatorElement.Text == "YESTERDAY")
                {
                    separatorElement.Text = "YESTERDAY_EN";
                }
            }
        }

Completed
Last Updated: 27 Aug 2019 12:37 by ADMIN
Release R3 2019
Created by: Konstantin
Comments: 2
Category: Chat
Type: Feature Request
2
It would be very convenient to scroll to a specific message when a lot of messages are available.
Completed
Last Updated: 27 Aug 2019 12:20 by ADMIN
Release R3 2019

Please refer to the attached sample project and follow the steps from the gif file. The scrollbar needs to be in the middle.

Note: the issue can be reproduced without action list as well.