WidgetFactory

Properties

HtmlHelper - IHtmlHelper

Methods

ActionSheet()

Creates a new AppBar.

RETURNS

Returns a new instance of ActionSheetBuilder for configuring the component.

Example

Razor
 
             @(Html.Kendo().ActionSheet()
                        .Name("ActionSheet")
            )
             

AIPrompt()

Creates a new AIPrompt.

RETURNS

Returns a new instance of AIPromptBuilder for configuring the component.

Example

Razor
 
             @(Html.Kendo().AIPrompt()
                        .Name("AIPrompt")
            )
             

AppBar()

Creates a new AppBar.

RETURNS

Returns a new instance of AppBarBuilder for configuring the component.

Example

Razor
 
             @(Html.Kendo().AppBar<Order>()
                        .Name("AppBar")
            )
             

ArcGauge()

Creates a new ArcGauge.

RETURNS

Returns a new instance of ArcGaugeBuilder for configuring the component.

Example

Razor
 
             @(Html.Kendo().ArcGauge()
                        .Name("ArcGauge")
            )
             

AutoComplete()

Creates a new AutoComplete.

RETURNS

Returns a new instance of AutoCompleteBuilder for configuring the component.

Example

Razor
 
             @( Html.Kendo().AutoComplete()
                        .Name("AutoComplete")
                        .Items(items =>
                        {
                            items.Add().Text("First Item");
                            items.Add().Text("Second Item");
                        })
            )
             

AutoCompleteFor(System.Linq.Expressions.Expression)

Creates a new AutoComplete.

Parameters

expression - System.Linq.Expressions.Expression<Func>

An expression that identifies the model property to bind to the AutoComplete.

RETURNS

Returns a new instance of AutoCompleteBuilder for configuring the component.

Example

Razor
 
             @( Html.Kendo().AutoCompleteFor(m=>m.Property) )
             

Avatar()

Creates a new Avatar.

RETURNS

Returns a new instance of AvatarBuilder for configuring the component.

Example

Razor
 
             @(Html.Kendo().Avatar()
                        .Name("Avatar")
            )
             

Badge()

Creates a new Badge.

RETURNS

Returns a new instance of BadgeBuilder for configuring the component.

Example

Razor
 
             @(Html.Kendo().Badge()
                        .Name("Badge")
            )
             

Barcode()

Creates a new Barcode.

RETURNS

Returns a new instance of BarcodeBuilder for configuring the component.

Example

Razor
 
             @(Html.Kendo().Barcode()
                        .Name("Barcode")
            )
             

BottomNavigation()

Creates a new BottomNavigation.

RETURNS

Returns a new instance of BottomNavigationBuilder for configuring the component.

Example

Razor
 
             @(Html.Kendo().BottomNavigation()
                        .Name("BottomNavigation")
            )
             

Creates a new Breadcrumb.

RETURNS

Returns a new instance of BreadcrumbBuilder for configuring the component.

Example

Razor
 
             @( Html.Kendo().Breadcrumb()
                        .Name("Breadcrumb")
            )
             

Button()

Creates a new Button.

RETURNS

Returns a new instance of ButtonBuilder for configuring the component.

Example

Razor
 
            @(Html.Kendo().Button()
                  .Name("Button")
                )
             

ButtonGroup()

Creates a new ButtonGroup.

RETURNS

Returns a new instance of ButtonGroupBuilder for configuring the component.

Example

Razor
 
             @(Html.Kendo().ButtonGroup()
                        .Name("ButtonGroup")
            )
             

Calendar()

Creates a new Calendar.

RETURNS

Returns a new instance of CalendarBuilder for configuring the component.

Example

Razor
 
             @( Html.Kendo().Calendar()
                        .Name("Calendar")
            )
             

Captcha()

Creates a new Captcha.

RETURNS

Returns a new instance of CaptchaBuilder for configuring the component.

Example

Razor
 
             @( Html.Kendo().Captcha()
                        .Name("Captcha")
            )
             

CaptchaFor(System.Linq.Expressions.Expression)

Creates a new Captcha.

Parameters

expression - System.Linq.Expressions.Expression<Func>

RETURNS

Returns a new instance of CaptchaBuilder for configuring the component.

Example

Razor
 
             @( Html.Kendo().CaptchaFor(m => m.Captcha)
            )
             

Chart()

Creates a new unbound Chart.

RETURNS

Returns a new instance of ChartBuilder for configuring the component.

Example

Razor
 
            @(Html.Kendo().Chart()
                        .Name("Chart")
                        .Series(series => {
                            series.Bar(new int[] { 1, 2, 3 }).Name("Total Sales");
                        })
            )
             

Chart()

Creates a new unbound Chart.

RETURNS

Returns a new instance of ChartBuilder for configuring the component.

Example

Razor
 
            @(Html.Kendo().Chart()
                        .Name("Chart")
                        .Series(series => {
                            series.Bar(new int[] { 1, 2, 3 }).Name("Total Sales");
                        })
            )
             

Chart(System.Collections.Generic.IEnumerable)

Creates a new Chart bound to the specified data source.

Parameters

data - System.Collections.Generic.IEnumerable<T>

The data source.

RETURNS

Returns a new instance of ChartBuilder for configuring the component.

Example

Razor
 
            @(Html.Kendo().Chart(Model)
                        .Name("Chart")
            )
             

Chart(System.String)

Creates a new Chart bound an item in ViewData.

Parameters

dataSourceViewDataKey - System.String

The data source view data key.

RETURNS

Returns a new instance of ChartBuilder for configuring the component.

Example

Razor
 
            @(Html.Kendo().Chart<SalesData>("sales")
                        .Name("Chart")
            )
             

ChartBreadcrumb()

Creates a new unbound ChartBreadcrumb.

RETURNS

Returns a new instance of ChartBreadcrumbBuilder for configuring the component.

Example

Razor
 
            @(Html.Kendo().ChartBreadcrumb()
                        .Name("Breadcrumb")
                        .Chart("Chart")
            )
             

ChartWizard()

Creates a new unbound ChartWizard.

RETURNS

Returns a new instance of ChartWizardBuilder for configuring the component.

Example

Razor
 
            @(Html.Kendo().ChartWizard()
                        .Name("ChartWizard")
            )
             

ChartWizard()

Creates a new unbound ChartWizard.

RETURNS

Returns a new instance of ChartWizardBuilder for configuring the component.

Example

Razor
 
            @(Html.Kendo().ChartWizard()
                        .Name("ChartWizard")
            )
             

ChartWizard(System.Collections.Generic.IEnumerable)

Creates a new ChartWizard bound to the specified data source.

Parameters

data - System.Collections.Generic.IEnumerable<T>

The data source.

RETURNS

Returns a new instance of ChartWizardBuilder for configuring the component.

Example

Razor
 
            @(Html.Kendo().ChartWizard(Model)
                        .Name("ChartWizard")
            )
             

Chat()

Creates a new Chat.

RETURNS

Returns a new instance of ChatBuilder for configuring the component.

Example

Razor
 
             @( Html.Kendo().Chat()
                        .Name("Chat")
            )
             

CheckBox()

Creates a new CheckBox.

RETURNS

Returns a new instance of CheckBoxBuilder for configuring the component.

Example

Razor
 
             @(Html.Kendo().CheckBox()
                        .Name("CheckBox")
            );
             

CheckBoxFor(System.Linq.Expressions.Expression)

Creates a new CheckBox.

Parameters

expression - System.Linq.Expressions.Expression<Func>

An expression that identifies the model property to bind to the checkbox.

RETURNS

Returns a new instance of CheckBoxBuilder for configuring the component.

Example

Razor
 
             @( Html.Kendo().CheckBoxFor(m=>m.Property) )
             

CheckBoxGroup()

Creates a new CheckBoxGroup.

RETURNS

Returns a new instance of CheckBoxGroupBuilder for configuring the component.

CheckBoxGroupFor(System.Linq.Expressions.Expression)

Creates a new CheckBoxGroup for the specified model property.

Parameters

expression - System.Linq.Expressions.Expression<Func>

An expression that identifies the model property to bind to the checkbox group.

RETURNS

Returns a new instance of CheckBoxGroupBuilder for configuring the component.

Chip()

Creates a new Chip.

RETURNS

Returns a new instance of ChipBuilder for configuring the component.

Example

Razor
 
             @( Html.Kendo().Chip()
                        .Name("Chip")
            )
             

ChipList()

Creates a new ChipList.

RETURNS

Returns a new instance of ChipListBuilder for configuring the component.

Example

Razor
 
             @( Html.Kendo().ChipList()
                        .Name("ChipList")
            )
             

CircularGauge()

Creates a new CircularGauge.

RETURNS

Returns a new instance of CircularGaugeBuilder for configuring the component.

CircularProgressBar()

Creates a new CircularProgressBar.

RETURNS

Returns a new instance of CircularProgressBarBuilder for configuring the component.

ColorGradient()

Creates a new ColorGradient.

RETURNS

Returns a new instance of ColorGradientBuilder for configuring the component.

Example

Razor
 
             @(Html.Kendo().ColorGradient()
                        .Name("ColorGradient")
            )
             

ColorPalette()

Creates a new ColorPalette.

RETURNS

Returns a new instance of ColorPaletteBuilder for configuring the component.

Example

Razor
 
             @(Html.Kendo().ColorPalette()
                        .Name("ColorPalette")
             )
             

ColorPicker()

Creates a new ColorPicker.

RETURNS

Returns a new instance of ColorPickerBuilder for configuring the component.

Example

Razor
 
             @(Html.Kendo().ColorPicker()
                        .Name("ColorPicker")
             )
             

ColorPickerFor(System.Linq.Expressions.Expression)

Creates a new ColorPicker.

Parameters

expression - System.Linq.Expressions.Expression<Func>

RETURNS

Returns a new instance of ColorPickerBuilder for configuring the component.

Example

Razor
 
             @( Html.Kendo().ColorPickerFor(m=>m.Property) )
             

ComboBox()

Creates a new ComboBox.

RETURNS

Returns a new instance of ComboBoxBuilder for configuring the component.

Example

Razor
 
             @( Html.Kendo().ComboBox()
                        .Name("ComboBox")
                        .BindTo(new List<SelectListItem>
                        {
                            new SelectListItem{
                                Text = "Text1",
                                Value = "Value1"
                            },
                            new SelectListItem{
                                Text = "Text2",
                                Value = "Value2"
                            }
                        })
            )
             

ComboBoxFor(System.Linq.Expressions.Expression)

Creates a new ComboBox bound to a model field.

Parameters

expression - System.Linq.Expressions.Expression<Func>

An expression that identifies the model field.

RETURNS

Returns a new instance of ComboBoxBuilder for configuring the component.

Example

Razor
 
            @Html.Kendo().ComboBoxFor(m => m.Property)
             

ContextMenu()

Creates a new ContextMenu.

RETURNS

Returns a new instance of ContextMenuBuilder for configuring the component.

Example

Razor
 
             @(Html.Kendo().ContextMenu()
                        .Name("ContextMenu")
             )
             

DeferredScripts(System.Boolean,System.Boolean)

Returns the initialization scripts for widgets set as deferred

Parameters

renderScriptTags - System.Boolean

Determines if the script should be rendered within a script tag

renderAsModule - System.Boolean

When rendering script tag, determines if the script tag should have the type attribute set to "module"

RETURNS

Returns a new instance of containing the deferred scripts.

DeferredScriptsFor(System.String,System.Boolean,System.Boolean)

Returns the initialization scripts for the specified widget.

Parameters

name - System.String

The name of the widget.

renderScriptTags - System.Boolean

Determines if the script should be rendered within a script tag

renderAsModule - System.Boolean

RETURNS

Returns a new instance of containing the deferred scripts.

DeferredScriptFile(System.Boolean)

Returns the initialization scripts for widgets set as deferred, and writes them to a script file.

Parameters

module - System.Boolean

If set to true adds type='module' to the rendered script tag.

RETURNS

Returns a new instance of rendering the script tag pointing to the generated script file.

DeferredScriptFile(System.String,System.Boolean)

Returns the initialization scripts for widgets set as deferred, and writes them to a script file.

Parameters

nonce - System.String

The nonce value to use for the script tag.

renderAsModule - System.Boolean

If set to true adds type='module' to the rendered script tag.

RETURNS

Returns a new instance of rendering the script tag pointing to the generated script file.

ActivateKendoScripts(System.String,System.Boolean)

Manually activate the client-side Kendo scripts. By default this is done internally.

Parameters

nonce - System.String

Specify nonce for the generated script tag.

renderAsModule - System.Boolean

If set to true adds type='module' to the rendered script tag.

RETURNS

Returns a new instance of containing the Kendo licensing script.

DefaultSettings(System.Boolean,System.Boolean)

Parameters

renderScriptTags - System.Boolean
renderAsModule - System.Boolean

DataSource()

Creates a new DataSource bound to the specified data item type.

RETURNS

Returns a new instance of DataSourceWidgetBuilder for configuring the component.

Example

Razor
 
             @(Html.Kendo().DataSource<Order>()
                        .Name("DataSource")
                        .BindTo(Model)
            )
             

DateInput()

Creates a new DateInput.

RETURNS

A DateInputBuilder instance that can be used to configure the DateInput.

Example

Razor
 
             @( Html.Kendo().DateInput()
                        .Name("DateInput")
            )
             

DateInputFor(System.Linq.Expressions.Expression)

Creates a new DateInput bound to model field

Parameters

expression - System.Linq.Expressions.Expression<Func>

name="expression">An expression that identifies the model field to bind to.

RETURNS

A DateInputBuilder instance that can be used to configure the DateInput.

Example

Razor
 
            @(Html.Kendo().DateInputFor(m => m.Property))
             

DateInputFor(System.Linq.Expressions.Expression)

Creates a new DateInput bound to model field

Parameters

expression - System.Linq.Expressions.Expression<Func>

name="expression">An expression that identifies the model field to bind to.

RETURNS

A DateInputBuilder instance that can be used to configure the DateInput.

Example

Razor
 
            @(Html.Kendo().DateInputFor(m => m.Property))
             

DateInputFor(System.Linq.Expressions.Expression)

Creates a new DateInput bound to model field

Parameters

expression - System.Linq.Expressions.Expression<Func>

name="expression">An expression that identifies the model field to bind to.

RETURNS

A DateInputBuilder instance that can be used to configure the DateInput.

Example

Razor
 
            @(Html.Kendo().DateInputFor(m => m.Property))
             

DateInputFor(System.Linq.Expressions.Expression)

Creates a new DateInput bound to model field

Parameters

expression - System.Linq.Expressions.Expression<Func>

name="expression">An expression that identifies the model field to bind to.

RETURNS

A DateInputBuilder instance that can be used to configure the DateInput.

Example

Razor
 
            @(Html.Kendo().DateInputFor(m => m.Property))
             

DateInputFor(System.Linq.Expressions.Expression)

Creates a new DateInput bound to model field

Parameters

expression - System.Linq.Expressions.Expression<Func>

name="expression">An expression that identifies the model field to bind to.

RETURNS

A DateInputBuilder instance that can be used to configure the DateInput.

Example

Razor
 
            @(Html.Kendo().DateInputFor(m => m.Property))
             

DateInputFor(System.Linq.Expressions.Expression)

Creates a new DateInput bound to model field

Parameters

expression - System.Linq.Expressions.Expression<Func>

name="expression">An expression that identifies the model field to bind to.

RETURNS

A DateInputBuilder instance that can be used to configure the DateInput.

Example

Razor
 
            @(Html.Kendo().DateInputFor(m => m.Property))
             

DatePicker()

Creates a new DatePicker.

RETURNS

A DatePickerBuilder instance that can be used to configure the DatePicker.

Example

Razor
 
             @( Html.Kendo().DatePicker()
                        .Name("DatePicker")
            )
             

DatePickerFor(System.Linq.Expressions.Expression)

Creates a new DatePicker.

Parameters

expression - System.Linq.Expressions.Expression<Func>

RETURNS

A DatePickerBuilder instance that can be used to configure the DatePicker.

Example

Razor
 
             @( Html.Kendo().DatePickerFor(m=>m.Property) )
             

DatePickerFor(System.Linq.Expressions.Expression)

Creates a new DatePicker.

Parameters

expression - System.Linq.Expressions.Expression<Func>

RETURNS

A DatePickerBuilder instance that can be used to configure the DatePicker.

Example

Razor
 
             @( Html.Kendo().DatePickerFor(m=>m.Property) )
             

DatePickerFor(System.Linq.Expressions.Expression)

Creates a new DatePicker.

Parameters

expression - System.Linq.Expressions.Expression<Func>

RETURNS

A DatePickerBuilder instance that can be used to configure the DatePicker.

Example

Razor
 
             @( Html.Kendo().DatePickerFor(m=>m.Property) )
             

DatePickerFor(System.Linq.Expressions.Expression)

Creates a new DatePicker.

Parameters

expression - System.Linq.Expressions.Expression<Func>

RETURNS

A DatePickerBuilder instance that can be used to configure the DatePicker.

Example

Razor
 
             @( Html.Kendo().DatePickerFor(m=>m.Property) )
             

DateRangePicker()

Creates a new DateRangePicker.

RETURNS

A DateRangePickerBuilder instance that can be used to configure the DateRangePicker.

Example

Razor
 
             @( Html.Kendo().DateRangePicker()
                        .Name("DateRangePicker")
            )
             

DateRangePickerFor(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)

Creates a new DatePicker.

Parameters

startExpression - System.Linq.Expressions.Expression<Func>
endExpression - System.Linq.Expressions.Expression<Func>

RETURNS

A DateRangePickerBuilder instance that can be used to configure the DateRangePicker.

Example

Razor
 
             @( Html.Kendo().DateRangePickerFor(m=>m.Start, m=>m.End) )
             

DateRangePickerFor(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)

Creates a new DatePicker.

Parameters

startExpression - System.Linq.Expressions.Expression<Func>
endExpression - System.Linq.Expressions.Expression<Func>

RETURNS

A DateRangePickerBuilder instance that can be used to configure the DateRangePicker.

Example

Razor
 
             @( Html.Kendo().DateRangePickerFor(m=>m.Start, m=>m.End) )
             

DateRangePickerFor(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)

Creates a new DatePicker.

Parameters

startExpression - System.Linq.Expressions.Expression<Func>
endExpression - System.Linq.Expressions.Expression<Func>

RETURNS

A DateRangePickerBuilder instance that can be used to configure the DateRangePicker.

Example

Razor
 
             @( Html.Kendo().DateRangePickerFor(m=>m.Start, m=>m.End) )
             

DateRangePickerFor(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)

Creates a new DatePicker.

Parameters

startExpression - System.Linq.Expressions.Expression<Func>
endExpression - System.Linq.Expressions.Expression<Func>

RETURNS

A DateRangePickerBuilder instance that can be used to configure the DateRangePicker.

Example

Razor
 
             @( Html.Kendo().DateRangePickerFor(m=>m.Start, m=>m.End) )
             

DateTimePicker()

Creates a new DateTimePicker.

RETURNS

A DateTimePickerBuilder instance that can be used to configure the DateTimePicker.

Example

Razor
 
            @(Html.Kendo().DateTimePicker()
                        .Name("DateTimePicker")
            )
             

DateTimePickerFor(System.Linq.Expressions.Expression)

Creates a new DateTimePicker bound to model field

Parameters

expression - System.Linq.Expressions.Expression<Func>

RETURNS

A DateTimePickerBuilder instance that can be used to configure the DateTimePicker.

Example

Razor
 
            @(Html.Kendo().DateTimePickerFor(m => m.Property))
             

DateTimePickerFor(System.Linq.Expressions.Expression)

Creates a new DateTimePicker bound to model field

Parameters

expression - System.Linq.Expressions.Expression<Func>

RETURNS

A DateTimePickerBuilder instance that can be used to configure the DateTimePicker.

Example

Razor
 
            @(Html.Kendo().DateTimePickerFor(m => m.Property))
             

Diagram()

Creates a

RETURNS

A DiagramBuilder instance that can be used to configure the Diagram.

Example

Razor
 
             @( Html.Kendo().Diagram()
                        .Name("Diagram")
            )
             

Diagram()

Creates a

RETURNS

A DiagramBuilder instance that can be used to configure the Diagram.

Example

Razor
 
             @( Html.Kendo().Diagram()
                        .Name("Diagram")
            )
             

Dialog()

Creates a new Window.

RETURNS

A DialogBuilder instance that can be used to configure the Dialog.

Example

Razor
 
             @( Html.Kendo().Window()
                        .Name("Window")
            )
             

DockManager()

Creates a new DockManager.

RETURNS

A DockManagerBuilder instance that can be used to configure the DockManager.

Example

Razor
 
             @( Html.Kendo().DockManager()
                        .Name("DockManager")
            )
             

Drawer()

Creates a new Drawer.

RETURNS

A DrawerBuilder instance that can be used to configure the Drawer.

Example

Razor
 
             @( Html.Kendo().Drawer()
                        .Name("Drawer")
            )
             

Creates a new DropDownButton.

RETURNS

A DropDownButtonBuilder instance that can be used to configure the DropDownButton.

Example

Razor
 
             @( Html.Kendo().DropDownButton()
                        .Name("DropDownButton")
            )
             

Creates a new DropDownList.

RETURNS

A DropDownListBuilder instance that can be used to configure the DropDownList.

Example

Razor
 
             @( Html.Kendo().DropDownList()
                        .Name("DropDownList")
                        .Items(items =>
                        {
                            items.Add().Text("First Item");
                            items.Add().Text("Second Item");
                        })
            )
             

Creates a new DropDownList bound to a model field.

Parameters

expression - System.Linq.Expressions.Expression<Func>

An expression that identifies the model field to bind to.

RETURNS

A DropDownListBuilder instance that can be used to configure the DropDownList.

Example

Razor
 
            @Html.Kendo().DropDownListFor(m => m.Property)
             

Creates a new DropDownTree.

RETURNS

A DropDownTreeBuilder instance that can be used to configure the DropDownTree.

Example

Razor
 
             @( Html.Kendo().DropDownTree()
                        .Name("DropDownTree")
                        .Items(items =>
                        {
                            items.Add().Text("First Item");
                            items.Add().Text("Second Item");
                        })
            )
             

Creates a new DropDownTree bound to a model field.

Parameters

expression - System.Linq.Expressions.Expression<Func>

An expression that identifies the model field to bind to.

RETURNS

A DropDownTreeBuilder instance that can be used to configure the DropDownTree.

Example

Razor
 
            @Html.Kendo().DropDownTreeFor(m => m.Property)
             

Editor()

Creates a

RETURNS

A EditorBuilder instance that can be used to configure the Editor.

Example

Razor
 
             @( Html.Kendo().Editor()
                        .Name("Editor")
            )
             

EditorFor(System.Linq.Expressions.Expression)

Creates a new UI component.

Parameters

expression - System.Linq.Expressions.Expression<Func>

An expression that identifies the model field to bind to.

RETURNS

A EditorBuilder instance that can be used to configure the Editor.

Example

Razor
 
             @( Html.Kendo().EditorFor(m=>m.Property)
              )
             

ExpansionPanel()

Creates a new ExpansionPanel.

RETURNS

A ExpansionPanelBuilder instance that can be used to configure the ExpansionPanel.

Example

Razor
 
            @(Html.Kendo().ExpansionPanel()
                        .Name("ExpansionPanel")
            )
             

FileManager()

Creates a new FileManager.

RETURNS

A FileManagerBuilder instance that can be used to configure the FileManager.

Example

Razor
 
             @( Html.Kendo().FileManager()
                        .Name("fileManager")
            )
             

Filter()

Creates a new Filter.

RETURNS

A FilterBuilder instance that can be used to configure the Filter.

Example

Razor
 
             @(Html.Kendo().Filter<Order>()
                        .Name("Filter")
            )
             

FlatColorPicker()

Creates a new FlatColorPicker.

RETURNS

A FlatColorPickerBuilder instance that can be used to configure the FlatColorPicker.

Example

Razor
 
             @(Html.Kendo().FlatColorPicker()
                        .Name("FlatColorPicker")
            )
             

FloatingActionButton()

Creates a new FloatingActionButton.

RETURNS

A FloatingActionButtonBuilder instance that can be used to configure the FloatingActionButton.

Example

Razor
 
             @(Html.Kendo().FloatingActionButton()
                .Name("FloatingActionButton")
            )
             

Form()

Creates a new .

RETURNS

A FormBuilder instance that can be used to configure the Form.

Example

Razor
 
             @(Html.Kendo().Form<Order>()
                 .Name("Form")
             )
             

Form()

Creates a new .

RETURNS

A FormBuilder instance that can be used to configure the Form.

Example

Razor
 
             @(Html.Kendo().Form<Order>()
                 .Name("Form")
             )
             

Gantt()

Creates a new Gantt.

RETURNS

A GanttBuilder instance that can be used to configure the Gantt.

Example

Razor
 
             @( Html.Kendo().Gantt()
            )
             

Gantt(System.Collections.Generic.IEnumerable,System.Collections.Generic.IEnumerable)

Creates a new Gantt bound to the specified data source.

Parameters

dataSource - System.Collections.Generic.IEnumerable<TTaskModel>

The data source.

dependenciesDataSource - System.Collections.Generic.IEnumerable<TDependenciesModel>

RETURNS

A GanttBuilder instance that can be used to configure the Gantt.

Example

Razor
 
             @( Html.Kendo().Gantt(ViewBag.Tasks)
                        .Name("Gantt")
            )
             

Gantt(System.String,System.String)

Creates a new Gantt bound an item in ViewData.

Parameters

dataSourceViewDataKey - System.String

The data source view data key.

dependenciesDataSourceViewDataKey - System.String

RETURNS

A GanttBuilder instance that can be used to configure the Gantt.

Example

Razor
 
             @( Html.Kendo().Gantt("tasks")
                        .Name("Gantt")
            )
             

Grid()

Creates a new Grid bound to the specified data item type.

RETURNS

A GridBuilder instance that can be used to configure the Grid.

Example

Razor
 
             @(Html.Kendo().Grid<Order>()
                        .Name("Grid")
                        .BindTo(Model)
            )
             

Grid(System.Collections.Generic.IEnumerable)

Creates a new Grid bound to the specified data source.

Parameters

dataSource - System.Collections.Generic.IEnumerable<T>

The data source.

RETURNS

A GridBuilder instance that can be used to configure the Grid.

Example

Razor
 
             @(Html.Kendo().Grid(Model)
                        .Name("Grid")
            )
             

Grid(System.String)

Creates a new Grid bound an item in ViewData.

Parameters

dataSourceViewDataKey - System.String

The data source view data key.

RETURNS

A GridBuilder instance that can be used to configure the Grid.

Example

Razor
 
             @(Html.Kendo().Grid<Order>("orders")
                        .Name("Grid")
            )
             

GridLayout()

Creates a new GridLayout.

RETURNS

A GridLayoutBuilder instance that can be used to configure the GridLayout.

Example

Razor
 
             @( Html.Kendo().GridLayout()
                        .Name("GridLayout")
            )
             

ImageEditor()

Creates a new ImageEditor.

RETURNS

A ImageEditorBuilder instance that can be used to configure the ImageEditor.

Example

Razor
 
             @( Html.Kendo().ImageEditor()
                        .Name("imageEditor")
            )
             

InlineAIPrompt()

Creates a new InlineAIPrompt.

RETURNS

Returns a new instance of InlineAIPromptBuilder for configuring the component.

Example

Razor
 
             @(Html.Kendo().InlineAIPrompt()
                        .Name("inlineaiprompt")
            )
             

LinearGauge()

Creates a new LinearGauge.

RETURNS

A LinearGaugeBuilder instance that can be used to configure the LinearGauge.

Example

Razor
 
            @( Html.Kendo().LinearGauge()
                        .Name("LinearGauge")
            )
             

LinearGaugeFor(System.Linq.Expressions.Expression)

Creates a new LinearGauge.

Parameters

expression - System.Linq.Expressions.Expression<Func>

An expression that identifies the model property to bind the LinearGauge to.

RETURNS

A LinearGaugeBuilder instance that can be used to configure the LinearGauge.

Example

Razor
 
            @( Html.Kendo().LinearGaugeFor(m=> m.Property)
            )
             

LinearGaugeFor(System.Linq.Expressions.Expression)

Creates a new LinearGauge.

Parameters

expression - System.Linq.Expressions.Expression<Func>

An expression that identifies the model property to bind the LinearGauge to.

RETURNS

A LinearGaugeBuilder instance that can be used to configure the LinearGauge.

Example

Razor
 
            @( Html.Kendo().LinearGaugeFor(m=> m.Property)
            )
             

ListBox()

Creates a new ListBox bound to the specified data item type.

RETURNS

A ListBoxBuilder instance that can be used to configure the ListBox.

Example

Razor
 
             @(Html.Kendo().ListBox<Order>()
                        .Name("ListBox")
                        .BindTo(Model)
            )
             

ListBox(System.Collections.IEnumerable)

Creates a new ListBox bound to the specified data source.

Parameters

dataSource - System.Collections.IEnumerable

The data source.

RETURNS

A ListBoxBuilder instance that can be used to configure the ListBox.

Example

Razor
 
             @(Html.Kendo().ListBox(Model)
                        .Name("ListBox")
            )
             

ListBox(System.String)

Creates a new ListBox bound an item in ViewData.

Parameters

dataSourceViewDataKey - System.String

The data source view data key.

RETURNS

A ListBoxBuilder instance that can be used to configure the ListBox.

Example

Razor
 
             @(Html.Kendo().ListBox<Order>("orders")
                        .Name("ListBox")
            )
             

ListView()

Creates a new ListView bound to the specified data item type.

RETURNS

A ListViewBuilder instance that can be used to configure the ListView.

Example

Razor
 
             @(Html.Kendo().ListView<Order>()
                        .Name("ListView")
                        .BindTo(Model)
            )
             

ListView(System.Collections.Generic.IEnumerable)

Creates a new ListView bound to the specified data source.

Parameters

dataSource - System.Collections.Generic.IEnumerable<T>

The data source.

RETURNS

A ListViewBuilder instance that can be used to configure the ListView.

Example

Razor
 
             @(Html.Kendo().ListView(Model)
                        .Name("ListView")
            )
             

ListView(System.String)

Creates a new ListView bound an item in ViewData.

Parameters

dataSourceViewDataKey - System.String

The data source view data key.

RETURNS

A ListViewBuilder instance that can be used to configure the ListView.

Example

Razor
 
             @(Html.Kendo().ListView<Order>("orders")
                        .Name("ListView")
            )
             

Loader()

Creates a new Loader.

RETURNS

A LoaderBuilder instance that can be used to configure the Loader.

Example

Razor
 
             @( Html.Kendo().Loader()
                        .Name("Loader")
            )
             

Map()

Creates a new Map.

RETURNS

A MapBuilder instance that can be used to configure the Map.

Example

Razor
 
            @( Html.Kendo().Map()
                        .Name("Map")
            )
             

MaskedTextBox()

Creates a new MaskedTextBox.

RETURNS

A MaskedTextBoxBuilder instance that can be used to configure the MaskedTextBox.

Example

Razor
 
             @( Html.Kendo().MaskedTextBox()
                        .Name("MaskedTextBox")
            )
             

MaskedTextBoxFor(System.Linq.Expressions.Expression)

Creates a new MaskedTextBox.

Parameters

expression - System.Linq.Expressions.Expression<Func>

An expression that identifies the model field to bind to.

RETURNS

A MaskedTextBoxBuilder instance that can be used to configure the MaskedTextBox.

Example

Razor
 
             @( Html.Kendo().MaskedTextBoxFor(m=> m.Property)
            )
             

MediaPlayer()

Creates a new MediaPlayer bound to the specified data item type.

RETURNS

A MediaPlayerBuilder instance that can be used to configure the MediaPlayer.

Example

Razor
 
             @(Html.Kendo().MediaPlayer()
                        .Name("MediaPlayer")
            )
             

Creates a new Menu.

RETURNS

A MenuBuilder instance that can be used to configure the Menu.

Example

Razor
 
             @(Html.Kendo().Menu()
                 .Name("Menu")
             )
             

MultiColumnComboBox()

Creates a new MultiColumnComboBox.

RETURNS

A MultiColumnComboBoxBuilder instance that can be used to configure the MultiColumnComboBox.

Example

Razor
 
             @( Html.Kendo().MultiColumnComboBox()
                        .Name("MultiColumnComboBox")
                        .BindTo(new List<SelectListItem>
                        {
                            new SelectListItem{
                                Text = "Text1",
                                Value = "Value1"
                            },
                            new SelectListItem{
                                Text = "Text2",
                                Value = "Value2"
                            }
                        })
            )
             

MultiColumnComboBoxFor(System.Linq.Expressions.Expression)

Creates a new MultiColumnComboBox bound to a model field.

Parameters

expression - System.Linq.Expressions.Expression<Func>

An expression that identifies the model field to bind to.

RETURNS

A MultiColumnComboBoxBuilder instance that can be used to configure the MultiColumnComboBox.

Example

Razor
 
            @Html.Kendo().MultiColumnComboBoxFor(m => m.Property)
             

MultiSelect()

Creates a new MultiSelect.

RETURNS

A MultiSelectBuilder instance that can be used to configure the MultiSelect.

Example

Razor
 
             @( Html.Kendo().MultiSelect()
                        .Name("MultiSelect")
                        .Items(items =>
                        {
                            items.Add().Text("First Item");
                            items.Add().Text("Second Item");
                        })
            )
             

MultiSelectFor(System.Linq.Expressions.Expression)

Creates a new MultiSelect bound to a model field.

Parameters

expression - System.Linq.Expressions.Expression<Func>

An expression that identifies the model field to bind to.

RETURNS

A MultiSelectBuilder instance that can be used to configure the MultiSelect.

Example

Razor
 
            @Html.Kendo().MultiSelectFor(m => m.Property)
             

MultiViewCalendar()

Creates a new MultiViewCalendar.

RETURNS

A MultiViewCalendarBuilder instance that can be used to configure the MultiViewCalendar.

Example

Razor
 
             @( Html.Kendo().MultiViewCalendar()
                        .Name("MultiViewCalendar")
            )
             

Notification()

Creates a

RETURNS

A NotificationBuilder instance that can be used to configure the Notification.

Example

Razor
 
             @( Html.Kendo().Notification()
                        .Name("Notification1");
            )
             

NumericTextBox()

Creates a new NumericTextBox.

RETURNS

A NumericTextBoxBuilder instance that can be used to configure the NumericTextBox.

Example

Razor
 
             @(Html.Kendo().NumericTextBox()
            	.Name("NumericTextBox")
             )
             

NumericTextBox()

Creates a new NumericTextBox.

RETURNS

A NumericTextBoxBuilder instance that can be used to configure the NumericTextBox.

Example

Razor
 
             @(Html.Kendo().NumericTextBox()
            	.Name("NumericTextBox")
             )
             

CurrencyTextBox()

Creates a new NumericTextBox with currency formatting applied.

RETURNS

A NumericTextBoxBuilder instance that can be used to configure the NumericTextBox.

Example

Razor
 
             @(Html.Kendo().CurrencyTextBox()
                .Name("CurrencyTextBox")
             )
             

PercentTextBox()

Creates a new NumericTextBox with percentage formatting applied.

RETURNS

A NumericTextBoxBuilder instance that can be used to configure the NumericTextBox.

Example

Razor
 
             @(Html.Kendo().PercentTextBox()
                .Name("PercentTextBox")
             )
             

IntegerTextBox()

Creates a new NumericTextBox bound to integer with default integer formatting applied.

RETURNS

A NumericTextBoxBuilder instance that can be used to configure the NumericTextBox.

Example

Razor
 
             @(Html.Kendo().IntegerTextBox()
                .Name("IntegerTextBox")
             )
             

NumericTextBoxFor(System.Linq.Expressions.Expression)

Creates a new .

Parameters

expression - System.Linq.Expressions.Expression<Func>

Expression that identifies the model field to bind to.

RETURNS

A NumericTextBoxBuilder instance that can be used to configure the NumericTextBox.

Example

Razor
 
             @(Html.Kendo().NumericTextBoxFor(m=>m.Property))
             

NumericTextBoxFor(System.Linq.Expressions.Expression)

Creates a new .

Parameters

expression - System.Linq.Expressions.Expression<Func>

Expression that identifies the model field to bind to.

RETURNS

A NumericTextBoxBuilder instance that can be used to configure the NumericTextBox.

Example

Razor
 
             @(Html.Kendo().NumericTextBoxFor(m=>m.Property))
             

IntegerTextBoxFor(System.Linq.Expressions.Expression)

Creates a new NumericTextBox.

Parameters

expression - System.Linq.Expressions.Expression<Func>

Expression that identifies the model field to bind to.

RETURNS

A NumericTextBoxBuilder instance that can be used to configure the NumericTextBox.

Example

Razor
 
             @(Html.Kendo().IntegerTextBoxFor(m=>m.Property))
             

IntegerTextBoxFor(System.Linq.Expressions.Expression)

Creates a new NumericTextBox.

Parameters

expression - System.Linq.Expressions.Expression<Func>

Expression that identifies the model field to bind to.

RETURNS

A NumericTextBoxBuilder instance that can be used to configure the NumericTextBox.

Example

Razor
 
             @(Html.Kendo().IntegerTextBoxFor(m=>m.Property))
             

IntegerTextBoxFor(System.Linq.Expressions.Expression)

Creates a new NumericTextBox.

Parameters

expression - System.Linq.Expressions.Expression<Func>

Expression that identifies the model field to bind to.

RETURNS

A NumericTextBoxBuilder instance that can be used to configure the NumericTextBox.

Example

Razor
 
             @(Html.Kendo().IntegerTextBoxFor(m=>m.Property))
             

IntegerTextBoxFor(System.Linq.Expressions.Expression)

Creates a new NumericTextBox.

Parameters

expression - System.Linq.Expressions.Expression<Func>

Expression that identifies the model field to bind to.

RETURNS

A NumericTextBoxBuilder instance that can be used to configure the NumericTextBox.

Example

Razor
 
             @(Html.Kendo().IntegerTextBoxFor(m=>m.Property))
             

CurrencyTextBoxFor(System.Linq.Expressions.Expression)

Creates a new NumericTextBox.

Parameters

expression - System.Linq.Expressions.Expression<Func>

Expression that identifies the model field to bind to.

RETURNS

A NumericTextBoxBuilder instance that can be used to configure the NumericTextBox.

Example

Razor
 
             @(Html.Kendo().CurrencyTextBoxFor(m=>m.Property))
             

CurrencyTextBoxFor(System.Linq.Expressions.Expression)

Creates a new NumericTextBox.

Parameters

expression - System.Linq.Expressions.Expression<Func>

Expression that identifies the model field to bind to.

RETURNS

A NumericTextBoxBuilder instance that can be used to configure the NumericTextBox.

Example

Razor
 
             @(Html.Kendo().CurrencyTextBoxFor(m=>m.Property))
             

PercentTextBoxFor(System.Linq.Expressions.Expression)

Creates a new NumericTextBox.

Parameters

expression - System.Linq.Expressions.Expression<Func>

Expression that identifies the model field to bind to.

RETURNS

A NumericTextBoxBuilder instance that can be used to configure the NumericTextBox.

Example

Razor
 
             @(Html.Kendo().PercentTextBoxFor(m=>m.Property))
             

PercentTextBoxFor(System.Linq.Expressions.Expression)

Creates a new NumericTextBox.

Parameters

expression - System.Linq.Expressions.Expression<Func>

Expression that identifies the model field to bind to.

RETURNS

A NumericTextBoxBuilder instance that can be used to configure the NumericTextBox.

Example

Razor
 
             @(Html.Kendo().PercentTextBoxFor(m=>m.Property))
             

OrgChart()

Creates a

RETURNS

A OrgChartBuilder instance that can be used to configure the OrgChart.

Example

Razor
 
            @(Html.Kendo().OrgChart()
                        .Name("OrgChart")
            )
             

OTPInput()

Creates a new OTPInput.

RETURNS

A OTPInputBuilder instance that can be used to configure the OTPInput.

Example

Razor
 
             @(Html.Kendo().OTPInput()
                        .Name("otpinput")
            )
             

OTPInputFor(System.Linq.Expressions.Expression)

Creates a new OTPInput.

Parameters

expression - System.Linq.Expressions.Expression<Func>

An expression that identifies the model property to bind to the OTPInput.

RETURNS

A OTPInputBuilder instance that can be used to configure the OTPInput.

Example

Razor
 
             @( Html.Kendo().OTPInput(m => m.Password) )
             

Pager()

Creates a new Pager.

RETURNS

A PagerBuilder instance that can be used to configure the Pager.

Example

Razor
 
             @( Html.Kendo().Pager()
                        .Name("Pager")
            )
             

PanelBar()

Creates a new PanelBar.

RETURNS

A PanelBarBuilder instance that can be used to configure the PanelBar.

Example

Razor
 
             @( Html.Kendo().PanelBar()
                        .Name("PanelBar")
                        .Items(items =>
                        {
                            items.Add().Text("First");
                            items.Add().Text("Second");
                        })
            )
             

PDFViewer()

Creates a new PDFViewer.

RETURNS

A PDFViewerBuilder instance that can be used to configure the PDFViewer.

Example

Razor
 
             @( Html.Kendo().PDFViewer()
                        .Name("PanelBar")
            )
             

PivotConfigurator()

Creates a new PivotConfigurator.

RETURNS

A PivotConfiguratorBuilder instance that can be used to configure the PivotConfigurator.

Example

Razor
 
             @( Html.Kendo().PivotConfigurator()
                        .Name("PivotConfigurator")
            )
             

PivotConfiguratorButton()

Creates a new PivotConfiguratorButton.

RETURNS

A PivotConfiguratorButtonBuilder instance that can be used to configure the PivotConfiguratorButton.

Example

Razor
 
             @( Html.Kendo().PivotConfiguratorButton()
                        .Name("PivotConfiguratorButton")
            )
             

PivotConfiguratorV2()

Creates a new PivotConfiguratorV2.

RETURNS

A PivotConfiguratorV2Builder instance that can be used to configure the PivotConfiguratorV2.

Example

Razor
 
             @( Html.Kendo().PivotConfigurator()
                        .Name("PivotConfigurator")
            )
             

PivotContainer()

Creates a new PivotContainer.

RETURNS

A PivotContainerBuilder instance that can be used to configure the PivotContainer.

Example

Razor
 
             @( Html.Kendo().PivotContainer()
                        .Name("PivotContainer")
            )
             

PivotGrid()

Creates a new PivotGrid.

RETURNS

A PivotGridBuilder instance that can be used to configure the PivotGrid.

Example

Razor
 
             @( Html.Kendo().PivotGrid()
                        .Name("PivotGrid")
            )
             

PivotGrid()

Creates a new PivotGrid.

RETURNS

A PivotGridBuilder instance that can be used to configure the PivotGrid.

Example

Razor
 
             @( Html.Kendo().PivotGrid()
                        .Name("PivotGrid")
            )
             

PivotGridV2()

Creates a new PivotGridV2.

RETURNS

A PivotGridV2Builder instance that can be used to configure the PivotGrid.

Example

Razor
 
             @( Html.Kendo().PivotGridV2()
                        .Name("PivotGrid")
            )
             

PivotGridV2()

Creates a new PivotGridV2.

RETURNS

A PivotGridV2Builder instance that can be used to configure the PivotGrid.

Example

Razor
 
             @( Html.Kendo().PivotGridV2()
                        .Name("PivotGrid")
            )
             

Popover()

Creates a new Popover.

RETURNS

A PopoverBuilder instance that can be used to configure the Popover.

Example

Razor
 
             @(Html.Kendo().Popover()
                        .Name("Popover")
            )
             

ProgressBar()

Creates a new ProgressBar.

RETURNS

A ProgressBarBuilder instance that can be used to configure the ProgressBar.

Example

Razor
 
             @( Html.Kendo().ProgressBar()
                        .Name("ProgressBar")
            )
             

PropertyGrid()

Creates a new PropertyGrid.

RETURNS

A PropertyGridBuilder instance that can be used to configure the PropertyGrid.

Example

Razor
 
             @(Html.Kendo().PropertyGrid()
                        .Name("PropertyGrid")
            )
             

PropertyGrid(Kendo.Mvc.UI.Fluent.T)

Parameters

model - T

QRCode()

Creates a new QRCode.

RETURNS

A QRCodeBuilder instance that can be used to configure the QRCode.

Example

Razor
 
             @( Html.Kendo().QRCode()
                        .Name("QRCode")
            )
             

RadialGauge()

Creates a new RadialGauge.

RETURNS

A RadialGaugeBuilder instance that can be used to configure the RadialGauge.

Example

Razor
 
             @( Html.Kendo().RadialGauge()
                        .Name("RadialGauge")
            )
             

RadialGaugeFor(System.Linq.Expressions.Expression)

Creates a new RadialGauge.

Parameters

expression - System.Linq.Expressions.Expression<Func>

An expression that identifies the model field to bind to.

RETURNS

A RadialGaugeBuilder instance that can be used to configure the RadialGauge.

Example

Razor
 
             @( Html.Kendo().RadialGaugeFor(m=>m.Property) )
             

RadialGaugeFor(System.Linq.Expressions.Expression)

Creates a new RadialGauge.

Parameters

expression - System.Linq.Expressions.Expression<Func>

An expression that identifies the model field to bind to.

RETURNS

A RadialGaugeBuilder instance that can be used to configure the RadialGauge.

Example

Razor
 
             @( Html.Kendo().RadialGaugeFor(m=>m.Property) )
             

RadioButton()

Creates a new RadioButton.

RETURNS

A RadioButtonBuilder instance that can be used to configure the RadioButton.

Example

Razor
 
            @(Html.Kendo().RadioButton()
                        .Name("RadioButton")
            );
             

RadioButtonFor(System.Linq.Expressions.Expression)

Creates a new RadioButton.

Parameters

expression - System.Linq.Expressions.Expression<Func>

An expression that identifies the model property to bind to the RadioButton.

RETURNS

A RadioButtonBuilder instance that can be used to configure the RadioButton.

Example

Razor
 
            @(Html.Kendo().RadioButtonFor(m => m.Property));
             

RadioGroup()

Creates a new RadioGroup.

RETURNS

A RadioGroupBuilder instance that can be used to configure the RadioGroup.

Example

Razor
 
             @( Html.Kendo().RadioGroup()
                        .Name("RadioGroup")
            )
             

RadioGroupFor(System.Linq.Expressions.Expression)

Creates a new RadioGroup.

Parameters

expression - System.Linq.Expressions.Expression<Func>

An expression that identifies the model property to bind to the RadioGroup.

RETURNS

A RadioGroupBuilder instance that can be used to configure the RadioGroup.

Example

Razor
 
             @( Html.Kendo().RadioGroupFor(m =>m.Property) )
             

RangeSlider()

Creates a new RangeSlider.

RETURNS

A RangeSliderBuilder instance that can be used to configure the RangeSlider.

Example

Razor
 
             @( Html.Kendo().RangeSlider()
                        .Name("RangeSlider")
            )
             

RangeSlider()

Creates a new RangeSlider.

RETURNS

A RangeSliderBuilder instance that can be used to configure the RangeSlider.

Example

Razor
 
             @( Html.Kendo().RangeSlider()
                        .Name("RangeSlider")
            )
             

RangeSliderFor(System.Linq.Expressions.Expression)

Creates a new RangeSlider.

Parameters

expression - System.Linq.Expressions.Expression<Func>

An expression that identifies the model property to bind to the RangeSlider.

RETURNS

A RangeSliderBuilder instance that can be used to configure the RangeSlider.

Example

Razor
 
             @( Html.Kendo().RangeSlider()
                        .Name("RangeSlider")
            )
             

RangeSliderFor(System.Linq.Expressions.Expression)

Creates a new RangeSlider.

Parameters

expression - System.Linq.Expressions.Expression<Func>

An expression that identifies the model property to bind to the RangeSlider.

RETURNS

A RangeSliderBuilder instance that can be used to configure the RangeSlider.

Example

Razor
 
             @( Html.Kendo().RangeSlider()
                        .Name("RangeSlider")
            )
             

Rating()

Creates a new Rating.

RETURNS

A RatingBuilder instance that can be used to configure the Rating.

Example

Razor
 
             @( Html.Kendo().Rating()
                        .Name("Rating")
            )
             

RatingFor(System.Linq.Expressions.Expression)

Creates a new Rating.

Parameters

expression - System.Linq.Expressions.Expression<Func>

RETURNS

A RatingBuilder instance that can be used to configure the Rating.

Example

Razor
 
             @( Html.Kendo().RatingFor(m=>m.Property) )
             

RecurrenceEditor()

Creates a new RecurrenceEditor.

RETURNS

A RecurrenceEditorBuilder instance that can be used to configure the RecurrenceEditor.

Example

Razor
 
             @( Html.Kendo().RecurrenceEditor()
                        .Name("recurrenceEditor")
                        .FirstWeekDay(0)
                        .Timezone("Etc/UTC")
            )
             

RecurrenceEditorFor(System.Linq.Expressions.Expression)

Creates a new RecurrenceEditor.

Parameters

expression - System.Linq.Expressions.Expression<Func>

RETURNS

A RecurrenceEditorBuilder instance that can be used to configure the RecurrenceEditor.

Example

Razor
 
             @( Html.Kendo().RecurrenceEditorFor(m=>m.Property) )
             

ResponsivePanel()

Creates a new ResponsivePanel.

RETURNS

A ResponsivePanelBuilder instance that can be used to configure the ResponsivePanel.

Example

Razor
 
             @( Html.Kendo().ResponsivePanel()
                        .Name("ResponsivePanel")
            )
             

Sankey()

Creates a new Sankey.

RETURNS

A SankeyBuilder instance that can be used to configure the Sankey.

Example

Razor
 
             @(Html.Kendo().Sankey()
                        .Name("Sankey")
            )
             

Scheduler()

Creates a new Scheduler.

RETURNS

A SchedulerBuilder instance that can be used to configure the Scheduler.

Example

Razor
 
             @( Html.Kendo().Scheduler<SchedulerEvent>()
                        .Name("Scheduler")
            )
             

ScrollView()

Creates a new ScrollView.

RETURNS

A ScrollViewBuilder instance that can be used to configure the ScrollView.

Example

Razor
 
             @( Html.Kendo().ScrollView()
                        .Name("ScrollView")
                        .Items(items =>
                        {
                            items.Add().Content("First");
                            items.Add().Content("Second");
                        })
            )
             

Signature()

Creates a new Signature.

RETURNS

A SignatureBuilder instance that can be used to configure the Signature.

Example

Razor
 
             @(Html.Kendo().Signature()
                        .Name("Signature")
            )
             

SkeletonContainer()

Creates a new SkeletonContainer.

RETURNS

A SkeletonContainerBuilder instance that can be used to configure the SkeletonContainer.

Example

Razor
 
            @(Html.Kendo().SkeletonContainer()
                        .Name("SkeletonContainer")
            )
             

Slider()

Creates a new Slider.

RETURNS

A SliderBuilder instance that can be used to configure the Slider.

Example

Razor
 
            @(Html.Kendo().Slider<double>()
                        .Name("Slider")
            )
             

Slider()

Creates a new Slider.

RETURNS

A SliderBuilder instance that can be used to configure the Slider.

Example

Razor
 
            @(Html.Kendo().Slider<double>()
                        .Name("Slider")
            )
             

SliderFor(System.Linq.Expressions.Expression)

Creates a new Slider for the specified model property.

Parameters

expression - System.Linq.Expressions.Expression<Func>

An expression that identifies the model property to bind to the Slider.

RETURNS

A SliderBuilder instance that can be used to configure the Slider.

Example

Razor
 
             @(Html.Kendo().SliderFor(m => m.Property))
             

SliderFor(System.Linq.Expressions.Expression)

Creates a new Slider for the specified model property.

Parameters

expression - System.Linq.Expressions.Expression<Func>

An expression that identifies the model property to bind to the Slider.

RETURNS

A SliderBuilder instance that can be used to configure the Slider.

Example

Razor
 
             @(Html.Kendo().SliderFor(m => m.Property))
             

SliderFor(System.Linq.Expressions.Expression)

Creates a new Slider for the specified model property.

Parameters

expression - System.Linq.Expressions.Expression<Func>

An expression that identifies the model property to bind to the Slider.

RETURNS

A SliderBuilder instance that can be used to configure the Slider.

Example

Razor
 
             @(Html.Kendo().SliderFor(m => m.Property))
             

SliderFor(System.Linq.Expressions.Expression)

Creates a new Slider for the specified model property.

Parameters

expression - System.Linq.Expressions.Expression<Func>

An expression that identifies the model property to bind to the Slider.

RETURNS

A SliderBuilder instance that can be used to configure the Slider.

Example

Razor
 
             @(Html.Kendo().SliderFor(m => m.Property))
             

Sortable()

Creates a new Sortable.

RETURNS

A SortableBuilder instance that can be used to configure the Sortable.

Example

Razor
 
            @( Html.Kendo().Sortable()
                        .Name("Sortable")
            )
             

Sparkline()

Creates a new unbound .

RETURNS

A SparklineBuilder instance that can be used to configure the Sparkline.

Example

Razor
 
            @( Html.Kendo().Sparkline()
                        .Name("Sparkline")
                        .Series(series => {
                            series.Bar(new int[] { 1, 2, 3 }).Name("Total Sales");
                        })
            )
             

Sparkline()

Creates a new unbound .

RETURNS

A SparklineBuilder instance that can be used to configure the Sparkline.

Example

Razor
 
            @( Html.Kendo().Sparkline()
                        .Name("Sparkline")
                        .Series(series => {
                            series.Bar(new int[] { 1, 2, 3 }).Name("Total Sales");
                        })
            )
             

Sparkline(System.Collections.Generic.IEnumerable)

Creates a new Sparkline bound to the specified data source.

Parameters

data - System.Collections.Generic.IEnumerable<T>

The data source.

RETURNS

A SparklineBuilder instance that can be used to configure the Sparkline.

Example

Razor
 
             @( Html.Kendo().Sparkline(Model)
                        .Name("Sparkline")
            )
             

Sparkline(System.String)

Creates a new Sparkline bound an item in ViewData.

Parameters

dataSourceViewDataKey - System.String

RETURNS

A SparklineBuilder instance that can be used to configure the Sparkline.

Example

Razor
 
             @( Html.Kendo().Sparkline<SalesData>("sales")
                        .Name("Sparkline")
            )
             

SpeechToTextButton()

Creates a new SpeechToTextButton.

RETURNS

Returns a new instance of SpeechToTextButtonBuilder for configuring the component.

Example

Razor
 
             @( Html.Kendo().SpeechToText()
                        .Name("speechToText")
            )
             

SplitButton()

Creates a new SplitButton.

RETURNS

A SplitButtonBuilder instance that can be used to configure the SplitButton.

Example

Razor
 
             @( Html.Kendo().SplitButton()
                        .Name("SplitButton")
            )
             

Splitter()

Creates a new Window.

RETURNS

A SplitterBuilder instance that can be used to configure the Splitter.

Example

Razor
 
             @( Html.Kendo().Window()
                        .Name("Window")
            )
             

Spreadsheet()

Creates a

RETURNS

A SpreadsheetBuilder instance that can be used to configure the Spreadsheet.

Example

Razor
 
             @( Html.Kendo().Spreadsheet()
                        .Name("Spreadsheet")
            )
             

StackLayout()

Creates a new StackLayout.

RETURNS

A StackLayoutBuilder instance that can be used to configure the StackLayout.

Example

Razor
 
             @( Html.Kendo().StackLayout()
                        .Name("StackLayout")
            )
             

Stepper()

Creates a new Stepper.

RETURNS

A StepperBuilder instance that can be used to configure the Stepper.

Example

Razor
 
             @( Html.Kendo().Stepper()
                        .Steps(steps =>
                        {
                            steps.Add().Label("First Item");
                            steps.Add().Label("Second Item");
                        })
            )
             

StockChart()

Creates a new unbound .

RETURNS

A StockChartBuilder instance that can be used to configure the StockChart.

Example

Razor
 
            @( Html.Kendo().StockChart()
                        .Name("StockChart")
                        .Series(series => {
                            series.Bar(new int[] { 1, 2, 3 }).Name("Total Sales");
                        })
            )
             

StockChart()

Creates a new unbound .

RETURNS

A StockChartBuilder instance that can be used to configure the StockChart.

Example

Razor
 
            @( Html.Kendo().StockChart()
                        .Name("StockChart")
                        .Series(series => {
                            series.Bar(new int[] { 1, 2, 3 }).Name("Total Sales");
                        })
            )
             

StockChart(System.Collections.Generic.IEnumerable)

Creates a new StockChart bound to the specified data source.

Parameters

data - System.Collections.Generic.IEnumerable<T>

The data source.

RETURNS

A StockChartBuilder instance that can be used to configure the StockChart.

Example

Razor
 
             @( Html.Kendo().StockChart(Model)
                        .Name("StockChart")
            )
             

StockChart(System.String)

Creates a new Chart bound an item in ViewData.

Parameters

dataSourceViewDataKey - System.String

The data source view data key.

RETURNS

A StockChartBuilder instance that can be used to configure the StockChart.

Example

Razor
 
            @(Html.Kendo().Chart<SalesData>("sales")
                        .Name("Chart")
            )
             

Switch()

Creates a new Switch.

RETURNS

A SwitchBuilder instance that can be used to configure the Switch.

Example

Razor
 
             @( Html.Kendo().Switch()
                        .Name("Switch")
            )
             

SwitchFor(System.Linq.Expressions.Expression)

Creates a new Switch.

Parameters

expression - System.Linq.Expressions.Expression<Func>

RETURNS

A SwitchBuilder instance that can be used to configure the Switch.

Example

Razor
 
             @( Html.Kendo().SwitchFor(m=>m.Property) )
             

TabStrip()

Creates a new TabStrip.

RETURNS

A TabStripBuilder instance that can be used to configure the TabStrip.

Example

Razor
 
             @( Html.Kendo().TabStrip()
                        .Name("TabStrip")
                        .Items(items =>
                        {
                            items.Add().Text("First");
                            items.Add().Text("Second");
                        })
            )
             

TaskBoard()

Creates a new TaskBoard.

RETURNS

A TaskBoardBuilder instance that can be used to configure the TaskBoard.

Example

Razor
 
             @( Html.Kendo().TaskBoard()
            )
             

TaskBoard()

Creates a new TaskBoard.

RETURNS

A TaskBoardBuilder instance that can be used to configure the TaskBoard.

Example

Razor
 
             @( Html.Kendo().TaskBoard()
            )
             

TaskBoard()

Creates a new TaskBoard.

RETURNS

A TaskBoardBuilder instance that can be used to configure the TaskBoard.

Example

Razor
 
             @( Html.Kendo().TaskBoard()
            )
             

Template()

Creates a new Template component. The Template component allows you to incorporate multiple helper components into the templating options of other components, creating templates that are CSP-compatible.

RETURNS

A TemplateBuilder instance that can be used to configure the Template.

Example

Razor
 
            .ClientTemplate(Html.Kendo().Template()
                    .AddHtml("<div class='details'>")
                    .AddComponent(btn => btn
                        .Button()
                        .Name("details")
                        .Content("Details")
                        .ThemeColor(ThemeColor.Primary)
                    )
                    .AddHtml("</div")
                );
             

TextArea()

Creates a new TextArea.

RETURNS

A TextAreaBuilder instance that can be used to configure the TextArea.

Example

Razor
 
             @( Html.Kendo().TextArea()
                        .Name("textarea")
            )
             

TextAreaFor(System.Linq.Expressions.Expression)

Creates a new TextArea.

Parameters

expression - System.Linq.Expressions.Expression<Func>

RETURNS

A TextAreaBuilder instance that can be used to configure the TextArea.

Example

Razor
 
             @( Html.Kendo().TextAreaFor(m =>m.Property) )
             

TextBox()

Creates a new TextBox.

RETURNS

A TextBoxBuilder instance that can be used to configure the TextBox.

Example

Razor
 
             @( Html.Kendo().TextBox()
                        .Name("TextBox")
            )
             

TextBox()

Creates a new TextBox.

RETURNS

A TextBoxBuilder instance that can be used to configure the TextBox.

Example

Razor
 
             @( Html.Kendo().TextBox()
                        .Name("TextBox")
            )
             

TextBoxFor(System.Linq.Expressions.Expression)

Creates a new TextBox.

Parameters

expression - System.Linq.Expressions.Expression<Func>

RETURNS

A TextBoxBuilder instance that can be used to configure the TextBox.

Example

Razor
 
             @( Html.Kendo().TextBoxFor(m =>m.Property) )
             

TileLayout()

Creates a new TileLayout.

RETURNS

A TileLayoutBuilder instance that can be used to configure the TileLayout.

Example

Razor
 
             @( Html.Kendo().TileLayout()
                        .Name("TileLayout")
            )
             

TimeDurationPicker()

Creates a new TimeDurationPicker.

RETURNS

A TimeDurationPickerBuilder instance that can be used to configure the TimeDurationPicker.

Example

Razor
 
             @(Html.Kendo().TimeDurationPicker()
                        .Name("TimeDurationPicker")
            )
             

TimeDurationPickerFor(System.Linq.Expressions.Expression)

Creates a new TimeDurationPicker.

Parameters

expression - System.Linq.Expressions.Expression<Func>

RETURNS

A TimeDurationPickerBuilder instance that can be used to configure the TimeDurationPicker.

Example

Razor
 
              @(Html.Kendo().TimeDurationPickerFor(x=> x.Property)
            
             )
              

TimeDurationPickerFor(System.Linq.Expressions.Expression)

Creates a new TimeDurationPicker.

Parameters

expression - System.Linq.Expressions.Expression<Func>

RETURNS

A TimeDurationPickerBuilder instance that can be used to configure the TimeDurationPicker.

Example

Razor
 
              @(Html.Kendo().TimeDurationPickerFor(x=> x.Property)
            
             )
              

Timeline()

Creates a new ListView bound to the specified data item type.

RETURNS

A ListViewBuilder instance that can be used to configure the ListView.

Example

Razor
 
             @(Html.Kendo().ListView<Order>()
                        .Name("ListView")
                        .BindTo(Model)
            )
             

TimePicker()

Creates a new TimePicker.

RETURNS

A TimePickerBuilder instance that can be used to configure the TimePicker.

Example

Razor
 
             @( Html.Kendo().TimePicker()
                        .Name("TimePicker")
            )
             

TimePickerFor(System.Linq.Expressions.Expression)

Creates a new TimePicker.

Parameters

expression - System.Linq.Expressions.Expression<Func>

An expression that identifies the model property to bind to the TimePicker.

RETURNS

A TimePickerBuilder instance that can be used to configure the TimePicker.

Example

Razor
 
             @( Html.Kendo().TimePickerFor(m=>m.Property) )
             

TimePickerFor(System.Linq.Expressions.Expression)

Creates a new TimePicker.

Parameters

expression - System.Linq.Expressions.Expression<Func>

An expression that identifies the model property to bind to the TimePicker.

RETURNS

A TimePickerBuilder instance that can be used to configure the TimePicker.

Example

Razor
 
             @( Html.Kendo().TimePickerFor(m=>m.Property) )
             

TimePickerFor(System.Linq.Expressions.Expression)

Creates a new TimePicker.

Parameters

expression - System.Linq.Expressions.Expression<Func>

An expression that identifies the model property to bind to the TimePicker.

RETURNS

A TimePickerBuilder instance that can be used to configure the TimePicker.

Example

Razor
 
             @( Html.Kendo().TimePickerFor(m=>m.Property) )
             

TimePickerFor(System.Linq.Expressions.Expression)

Creates a new TimePicker.

Parameters

expression - System.Linq.Expressions.Expression<Func>

An expression that identifies the model property to bind to the TimePicker.

RETURNS

A TimePickerBuilder instance that can be used to configure the TimePicker.

Example

Razor
 
             @( Html.Kendo().TimePickerFor(m=>m.Property) )
             

TimePickerFor(System.Linq.Expressions.Expression)

Creates a new TimePicker.

Parameters

expression - System.Linq.Expressions.Expression<Func>

An expression that identifies the model property to bind to the TimePicker.

RETURNS

A TimePickerBuilder instance that can be used to configure the TimePicker.

Example

Razor
 
             @( Html.Kendo().TimePickerFor(m=>m.Property) )
             

TimePickerFor(System.Linq.Expressions.Expression)

Creates a new TimePicker.

Parameters

expression - System.Linq.Expressions.Expression<Func>

An expression that identifies the model property to bind to the TimePicker.

RETURNS

A TimePickerBuilder instance that can be used to configure the TimePicker.

Example

Razor
 
             @( Html.Kendo().TimePickerFor(m=>m.Property) )
             

ToggleButton()

Creates a new ToggleButton.

RETURNS

A ToggleButtonBuilder instance that can be used to configure the ToggleButton.

Example

Razor
 
             @( Html.Kendo().ToggleButton()
                        .Name("toggleButton")
            )
             

ToolBar()

Creates a

RETURNS

A ToolBarBuilder instance that can be used to configure the ToolBar.

Example

Razor
 
             @( Html.Kendo().ToolBar()
                        .Name("ToolBar")
            )
             

Tooltip()

Creates a new Tooltip.

RETURNS

A TooltipBuilder instance that can be used to configure the Tooltip.

Example

Razor
 
             @( Html.Kendo().Tooltip()
                        .For("Container")
            )
             

TreeList()

Creates a

RETURNS

A TreeListBuilder instance that can be used to configure the TreeList.

Example

Razor
 
            @(Html.Kendo().TreeList()
                        .Name("TreeList")
            )
             

TreeMap()

Creates a new TreeMap.

RETURNS

A TreeMapBuilder instance that can be used to configure the TreeMap.

Example

Razor
 
             @( Html.Kendo().TreeMap()
                        .Name("TreeMap")
            )
             

TreeView()

Creates a

RETURNS

A TreeViewBuilder instance that can be used to configure the TreeView.

Example

Razor
 
            @(Html.Kendo().TreeView()
                        .Name("TreeView")
            )
             

Upload()

Creates a new Upload.

RETURNS

A UploadBuilder instance that can be used to configure the Upload.

Example

Razor
 
             @( Html.Kendo().Upload()
                        .Name("Upload")
            )
             

Window()

Creates a new Window.

RETURNS

A WindowBuilder instance that can be used to configure the Window.

Example

Razor
 
             @( Html.Kendo().Window()
                        .Name("Window")
            )
             

Wizard()

Creates a new Stepper.

RETURNS

A WizardBuilder instance that can be used to configure the Wizard.

Example

Razor
 
             @( Html.Kendo().Wizard()
                        .Steps(steps =>
                        {
                            steps.Add().Title("First Item");
                            steps.Add().Title("Second Item");
                        })
            )
             
In this article
PropertiesHtmlHelper - IHtmlHelperMethodsActionSheet()AIPrompt()AppBar()ArcGauge()AutoComplete()AutoCompleteFor(System.Linq.Expressions.Expression)Avatar()Badge()Barcode()BottomNavigation()Breadcrumb()Button()ButtonGroup()Calendar()Captcha()CaptchaFor(System.Linq.Expressions.Expression)Chart()Chart()Chart(System.Collections.Generic.IEnumerable)Chart(System.String)ChartBreadcrumb()ChartWizard()ChartWizard()ChartWizard(System.Collections.Generic.IEnumerable)Chat()CheckBox()CheckBoxFor(System.Linq.Expressions.Expression)CheckBoxGroup()CheckBoxGroupFor(System.Linq.Expressions.Expression)Chip()ChipList()CircularGauge()CircularProgressBar()ColorGradient()ColorPalette()ColorPicker()ColorPickerFor(System.Linq.Expressions.Expression)ComboBox()ComboBoxFor(System.Linq.Expressions.Expression)ContextMenu()DeferredScripts(System.Boolean,System.Boolean)DeferredScriptsFor(System.String,System.Boolean,System.Boolean)DeferredScriptFile(System.Boolean)DeferredScriptFile(System.String,System.Boolean)ActivateKendoScripts(System.String,System.Boolean)DefaultSettings(System.Boolean,System.Boolean)DataSource()DateInput()DateInputFor(System.Linq.Expressions.Expression)DateInputFor(System.Linq.Expressions.Expression)DateInputFor(System.Linq.Expressions.Expression)DateInputFor(System.Linq.Expressions.Expression)DateInputFor(System.Linq.Expressions.Expression)DateInputFor(System.Linq.Expressions.Expression)DatePicker()DatePickerFor(System.Linq.Expressions.Expression)DatePickerFor(System.Linq.Expressions.Expression)DatePickerFor(System.Linq.Expressions.Expression)DatePickerFor(System.Linq.Expressions.Expression)DateRangePicker()DateRangePickerFor(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)DateRangePickerFor(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)DateRangePickerFor(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)DateRangePickerFor(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)DateTimePicker()DateTimePickerFor(System.Linq.Expressions.Expression)DateTimePickerFor(System.Linq.Expressions.Expression)Diagram()Diagram()Dialog()DockManager()Drawer()DropDownButton()DropDownList()DropDownListFor(System.Linq.Expressions.Expression)DropDownTree()DropDownTreeFor(System.Linq.Expressions.Expression)Editor()EditorFor(System.Linq.Expressions.Expression)ExpansionPanel()FileManager()Filter()FlatColorPicker()FloatingActionButton()Form()Form()Gantt()Gantt(System.Collections.Generic.IEnumerable,System.Collections.Generic.IEnumerable)Gantt(System.String,System.String)Grid()Grid(System.Collections.Generic.IEnumerable)Grid(System.String)GridLayout()ImageEditor()InlineAIPrompt()LinearGauge()LinearGaugeFor(System.Linq.Expressions.Expression)LinearGaugeFor(System.Linq.Expressions.Expression)ListBox()ListBox(System.Collections.IEnumerable)ListBox(System.String)ListView()ListView(System.Collections.Generic.IEnumerable)ListView(System.String)Loader()Map()MaskedTextBox()MaskedTextBoxFor(System.Linq.Expressions.Expression)MediaPlayer()Menu()MultiColumnComboBox()MultiColumnComboBoxFor(System.Linq.Expressions.Expression)MultiSelect()MultiSelectFor(System.Linq.Expressions.Expression)MultiViewCalendar()Notification()NumericTextBox()NumericTextBox()CurrencyTextBox()PercentTextBox()IntegerTextBox()NumericTextBoxFor(System.Linq.Expressions.Expression)NumericTextBoxFor(System.Linq.Expressions.Expression)IntegerTextBoxFor(System.Linq.Expressions.Expression)IntegerTextBoxFor(System.Linq.Expressions.Expression)IntegerTextBoxFor(System.Linq.Expressions.Expression)IntegerTextBoxFor(System.Linq.Expressions.Expression)CurrencyTextBoxFor(System.Linq.Expressions.Expression)CurrencyTextBoxFor(System.Linq.Expressions.Expression)PercentTextBoxFor(System.Linq.Expressions.Expression)PercentTextBoxFor(System.Linq.Expressions.Expression)OrgChart()OTPInput()OTPInputFor(System.Linq.Expressions.Expression)Pager()PanelBar()PDFViewer()PivotConfigurator()PivotConfiguratorButton()PivotConfiguratorV2()PivotContainer()PivotGrid()PivotGrid()PivotGridV2()PivotGridV2()Popover()ProgressBar()PropertyGrid()PropertyGrid(Kendo.Mvc.UI.Fluent.T)QRCode()RadialGauge()RadialGaugeFor(System.Linq.Expressions.Expression)RadialGaugeFor(System.Linq.Expressions.Expression)RadioButton()RadioButtonFor(System.Linq.Expressions.Expression)RadioGroup()RadioGroupFor(System.Linq.Expressions.Expression)RangeSlider()RangeSlider()RangeSliderFor(System.Linq.Expressions.Expression)RangeSliderFor(System.Linq.Expressions.Expression)Rating()RatingFor(System.Linq.Expressions.Expression)RecurrenceEditor()RecurrenceEditorFor(System.Linq.Expressions.Expression)ResponsivePanel()Sankey()Scheduler()ScrollView()Signature()SkeletonContainer()Slider()Slider()SliderFor(System.Linq.Expressions.Expression)SliderFor(System.Linq.Expressions.Expression)SliderFor(System.Linq.Expressions.Expression)SliderFor(System.Linq.Expressions.Expression)Sortable()Sparkline()Sparkline()Sparkline(System.Collections.Generic.IEnumerable)Sparkline(System.String)SpeechToTextButton()SplitButton()Splitter()Spreadsheet()StackLayout()Stepper()StockChart()StockChart()StockChart(System.Collections.Generic.IEnumerable)StockChart(System.String)Switch()SwitchFor(System.Linq.Expressions.Expression)TabStrip()TaskBoard()TaskBoard()TaskBoard()Template()TextArea()TextAreaFor(System.Linq.Expressions.Expression)TextBox()TextBox()TextBoxFor(System.Linq.Expressions.Expression)TileLayout()TimeDurationPicker()TimeDurationPickerFor(System.Linq.Expressions.Expression)TimeDurationPickerFor(System.Linq.Expressions.Expression)Timeline()TimePicker()TimePickerFor(System.Linq.Expressions.Expression)TimePickerFor(System.Linq.Expressions.Expression)TimePickerFor(System.Linq.Expressions.Expression)TimePickerFor(System.Linq.Expressions.Expression)TimePickerFor(System.Linq.Expressions.Expression)TimePickerFor(System.Linq.Expressions.Expression)ToggleButton()ToolBar()Tooltip()TreeList()TreeMap()TreeView()Upload()Window()Wizard()
Not finding the help you need?
Contact Support