Kendo.Mvc.UI.Fluent.ChatBuilder
Defines the fluent interface for configuring the Chatcomponent.
Methods
Messages(System.Action<Kendo.Mvc.UI.Fluent.ChatMessagesSettingsBuilder>)
Allows localization of the strings that are used in the widget.
Parameters
configurator System.Action<Kendo.Mvc.UI.Fluent.ChatMessagesSettingsBuilder>
The configurator for the messages setting.
User(System.Action<Kendo.Mvc.UI.Fluent.ChatUserSettingsBuilder>)
Configures the Kendo UI Chat user information.
Parameters
configurator System.Action<Kendo.Mvc.UI.Fluent.ChatUserSettingsBuilder>
The configurator for the user setting.
Toolbar(System.Action<Kendo.Mvc.UI.Fluent.ChatToolbarSettingsBuilder>)
Configures the Kendo UI Chat toolbar.
Parameters
configurator System.Action<Kendo.Mvc.UI.Fluent.ChatToolbarSettingsBuilder>
The configurator for the user setting.
Events(System.Action<Kendo.Mvc.UI.Fluent.ChatEventBuilder>)
Configures the client-side events.
Parameters
configurator System.Action<Kendo.Mvc.UI.Fluent.ChatEventBuilder>
The client events action.
Example (ASPX)
@(Html.Kendo().Chat()
.Name("Chat")
.Events(events => events
.ActionClick("onActionClick")
)
)