ChatBuilder

Methods

Messages(System.Action)

Allows localization of the strings that are used in the widget.

Parameters

configurator - System.Action<ChatMessagesSettingsBuilder>

The configurator for the messages setting.

Example

Razor
 
            	@(Html.Kendo().Chat()
            	    .Name("chat")
            	    .Messages(m => {
            	        m.Placeholder("Placeholder value ...");
            	        m.SendButton("Send");
            	        m.ToggleButton("Toggle Button");
            	    })
            	)
             

User(System.Action)

Configures the Kendo UI Chat user information.

Parameters

configurator - System.Action<ChatUserSettingsBuilder>

The configurator for the user setting.

Example

Razor
 
            	@(Html.Kendo().Chat()
            	    .Name("chat")
            	    .User(u => u
            	        .Name("ChatBot Name")
            	        .IconUrl("https://demos.telerik.com/kendo-ui/content/chat/avatar.png")
            	    )
            	)
             

Toolbar(System.Action)

Configures the Kendo UI Chat toolbar.

Parameters

configurator - System.Action<ChatToolbarSettingsBuilder>

The configurator for the user setting.

Example

Razor
 
            	@(Html.Kendo().Chat()
            	    .Name("chat")
            	    .Toolbar(toolbar => 
            	    {
            	        toolbar.Toggleable(true);
            	        toolbar.Scrollable(false);
            	        toolbar.Buttons(buttons =>
            	        {
            	            buttons.Add().Name("Button").IconClass("k-icon k-i-image").Attr(new { style = "border-color:red" });
            	        });
            	        toolbar.Animation(true);
            	        toolbar.Animation(animation => animation
            	                .Collapse(collapse => collapse
            	                    .Expand(ExpandDirection.Vertical)
            	                    .Fade(FadeDirection.In)
            	                    .Duration(500)
            	                )
            	            );
            	    }) 
            	)
             

Events(System.Action)

Configures the client-side events.

Parameters

configurator - System.Action<ChatEventBuilder>

The client events action.

Example

Razor
 
            @(Html.Kendo().Chat()
                  .Name("Chat")
                  .Events(events => events
                      .ActionClick("onActionClick")
                  )
            )
             

ToComponent()

Returns the internal view component.

Name(System.String)

Sets the name of the component.

Parameters

componentName - System.String

The name of the component.

Example

Razor
 
            @(Html.Kendo().Grid<OrderViewModel>()
               .Name("grid")
               .Columns(columns =>
               {
                   columns.Bound(p => p.OrderID).Filterable(false);
                   columns.Bound(p => p.Freight);
               })
               .DataSource(dataSource => dataSource
                   .Ajax()
                   .PageSize(20)
                   .Read(read => read.Action("Orders_Read", "Grid"))
               )
            )
             

Deferred(System.Boolean)

Suppress initialization script rendering. Note that this options should be used in conjunction with

Parameters

deferred - System.Boolean

ModelMetadata(System.Web.Mvc.ModelMetadata)

Uses the Metadata of the Model.

Parameters

modelMetadata - System.Web.Mvc.ModelMetadata

The metadata set for the Model

HtmlAttributes(System.Object)

Sets the HTML attributes.

Parameters

attributes - System.Object

The HTML attributes.

HtmlAttributes(System.Collections.Generic.IDictionary)

Parameters

attributes - System.Collections.Generic.IDictionary<String,Object>

AsModule(System.Boolean)

Specifies whether the initialization script of the component will be rendered as a JavaScript module.

Parameters

value - System.Boolean

Render()

Renders the component.

Example

Razor
 
            @(@Page Inherits="System.Web.Mvc.ViewPage<IEnumerable<Product>>" )
            @( Html.Kendo().Grid(Model)
                .Name("grid")
                .DetailTemplate(product => {
                    )
                       Product Details:
                       <div>Product Name: @( product.ProductName )</div>
                       <div>Units In Stock: @( product.UnitsInStock )</div>
                    @(
                })
                .Render();
            )
             

ScriptAttributes(System.Object,System.Boolean)

Sets the JavaScript attributes to the initialization script.

Parameters

attributes - System.Object

The JavaScript attributes.

overrideAttributes - System.Boolean

Argument which determines whether attributes should be overriden.

ScriptAttributes(System.Collections.Generic.IDictionary,System.Boolean)

Sets the JavaScript attributes to the initialization script.

Parameters

attributes - System.Collections.Generic.IDictionary<String,Object>

The JavaScript attributes.

overrideAttributes - System.Boolean

Argument which determines whether attributes should be overriden.

ToHtmlString()

ToClientTemplate()