ReasoningBuilder

Methods

Label(System.String)

The primary text label displayed in the step header.

Parameters

value - System.String

The value that configures the label.

SecondaryLabel(System.String)

A secondary text label displayed after the separator in the step header.

Parameters

value - System.String

The value that configures the secondarylabel.

SvgIcon(System.String)

The name of the SVG icon displayed in the step header.

Parameters

value - System.String

The value that configures the svgicon.

Completed(System.Boolean)

Marks the reasoning step as completed, applying the k-agent-completed CSS class to the element.

Parameters

value - System.Boolean

The value that configures the completed.

Expanded(System.Boolean)

Controls whether the content body is visible when the widget initializes.

Parameters

value - System.Boolean

The value that configures the expanded.

Expandable(System.Boolean)

Enables toggling the visibility of the content body by clicking the header or using the keyboard.

Parameters

value - System.Boolean

The value that configures the expandable.

Content(System.String)

Plain text content rendered inside the step body.

Parameters

value - System.String

The value that configures the content.

ContentTemplateHandler(System.String)

A function used to render the content body. Called with an empty object and must return an HTML string.

Parameters

value - System.String

The value that configures the contenttemplate.

ContentTemplate(Kendo.Mvc.UI.Fluent.TemplateBuilder)

A function used to render the content body. Called with an empty object and must return an HTML string.

Parameters

template - TemplateBuilder<TModel>

A Template component that configures the contenttemplate.

Time(System.String)

A time or duration string displayed after a separator in the step header.

Parameters

value - System.String

The value that configures the time.

Events(System.Action)

Configures the client-side events.

Parameters

configurator - System.Action<ReasoningEventBuilder>

The client events action.

Example

Razor
 
            @(Html.Kendo().Reasoning()
                        .Name("Reasoning")
                        .Events(events => events
                            .ExpandedChange("onExpandedChange")
                        )
            )
             

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()