WidgetFactory

Properties

HtmlHelper - IHtmlHelper

Methods

RadioGroup()

Creates a new .

Example

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

RadioGroupFor(System.Linq.Expressions.Expression)

Creates a new .

Parameters

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

Example

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

RangeSlider()

RangeSlider()

RangeSliderFor(System.Linq.Expressions.Expression)

Parameters

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

RangeSliderFor(System.Linq.Expressions.Expression)

Parameters

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

Rating()

Creates a new .

Example

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

RatingFor(System.Linq.Expressions.Expression)

Creates a new .

Parameters

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

Example

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

RecurrenceEditor()

Creates a new .

Example

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

RecurrenceEditorFor(System.Linq.Expressions.Expression)

Creates a new .

Parameters

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

Example

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

ResponsivePanel()

Creates a new .

Example

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

Sankey()

Creates a new Sankey.

Example

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

Scheduler()

Creates a new .

Example

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

ScrollView()

Creates a new .

Example

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

Signature()

Creates a new Signature.

Example

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

SkeletonContainer()

Slider()

Slider()

SliderFor(System.Linq.Expressions.Expression)

Parameters

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

SliderFor(System.Linq.Expressions.Expression)

Parameters

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

SliderFor(System.Linq.Expressions.Expression)

Parameters

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

SliderFor(System.Linq.Expressions.Expression)

Parameters

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

Sortable()

Sparkline()

Creates a new unbound .

Example

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

Sparkline()

Creates a new unbound .

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.

Example

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

Sparkline(System.String)

Creates a new Sparkline bound an item in ViewData.

Parameters

dataSourceViewDataKey - System.String

Example

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

SplitButton()

Creates a new .

Example

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

Splitter()

Creates a new .

Example

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

Spreadsheet()

Creates a

Example

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

StackLayout()

Creates a new .

Example

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

Stepper()

Creates a new .

Example

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

StockChart()

Creates a new unbound .

Example

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

StockChart()

Creates a new unbound .

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.

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.

Example

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

Switch()

Creates a new .

Example

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

SwitchFor(System.Linq.Expressions.Expression)

Creates a new .

Parameters

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

Example

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

TabStrip()

Creates a new .

Example

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

TaskBoard()

Creates a new .

Example

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

TaskBoard()

Creates a new .

Example

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

TaskBoard()

Creates a new .

Example

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

Template()

TextArea()

Creates a new .

Example

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

TextAreaFor(System.Linq.Expressions.Expression)

Creates a new .

Parameters

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

Example

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

TextBox()

Creates a new .

Example

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

TextBox()

Creates a new .

Example

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

TextBoxFor(System.Linq.Expressions.Expression)

Creates a new .

Parameters

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

Example

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

TileLayout()

Creates a new .

Example

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

TimeDurationPicker()

Creates a new TimeDurationPicker.

Example

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

TimeDurationPickerFor(System.Linq.Expressions.Expression)

Creates a new TimeDurationPicker.

Parameters

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

Example

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

Timeline()

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

Example

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

TimePicker()

Creates a new .

Example

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

TimePickerFor(System.Linq.Expressions.Expression)

Creates a new .

Parameters

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

Example

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

TimePickerFor(System.Linq.Expressions.Expression)

Creates a new .

Parameters

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

Example

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

TimePickerFor(System.Linq.Expressions.Expression)

Creates a new .

Parameters

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

Example

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

TimePickerFor(System.Linq.Expressions.Expression)

Creates a new .

Parameters

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

Example

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

TimePickerFor(System.Linq.Expressions.Expression)

Creates a new .

Parameters

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

Example

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

TimePickerFor(System.Linq.Expressions.Expression)

Creates a new .

Parameters

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

Example

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

ToggleButton()

Creates a new .

Example

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

ToolBar()

Creates a

Example

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

Tooltip()

Creates a new .

Example

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

TreeList()

Creates a

Example

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

TreeMap()

Creates a new .

Example

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

TreeView()

Creates a

Example

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

Upload()

Window()

Creates a new .

Example

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

Wizard()

Creates a new .

Example

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

Drawer()

Creates a new .

Example

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

Creates a new .

Example

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

Creates a new .

Example

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

Creates a new bound to a model field.

Parameters

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

Example

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

Creates a new .

Example

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

Creates a new bound to a model field.

Parameters

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

Example

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

Editor()

Creates a

Example

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

EditorFor(System.Linq.Expressions.Expression)

Creates a new UI component.

Parameters

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

ExpansionPanel()

FileManager()

Creates a new .

Example

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

Filter()

Creates a new .

Example

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

FlatColorPicker()

FloatingActionButton()

Creates a new FloatingActionButton.

Example

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

Form()

Creates a new .

Example

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

Form()

Creates a new .

Example

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

Gantt()

Creates a new .

Example

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

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

Creates a new bound to the specified data source.

Parameters

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

The data source.

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

Example

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

Gantt(System.String,System.String)

Creates a new bound an item in ViewData.

Parameters

dataSourceViewDataKey - System.String

The data source view data key.

dependenciesDataSourceViewDataKey - System.String

Example

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

Grid()

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

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.

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.

Example

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

GridLayout()

Creates a new .

Example

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

ImageEditor()

Creates a new .

Example

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

LinearGauge()

LinearGaugeFor(System.Linq.Expressions.Expression)

Parameters

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

LinearGaugeFor(System.Linq.Expressions.Expression)

Parameters

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

ListBox()

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

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.

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.

Example

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

ListView()

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

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.

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.

Example

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

Loader()

Map()

MaskedTextBox()

Creates a new .

Example

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

MaskedTextBoxFor(System.Linq.Expressions.Expression)

Parameters

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

MediaPlayer()

Creates a new bound to the specified data item type.

Example

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

MultiColumnComboBox()

Creates a new .

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 bound to a model field.

Parameters

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

Example

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

MultiSelect()

Creates a new .

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 bound to a model field.

Parameters

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

Example

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

MultiViewCalendar()

Creates a new .

Example

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

Notification()

Creates a

Example

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

NumericTextBox()

Creates a new .

Example

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

NumericTextBox()

Creates a new .

Example

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

CurrencyTextBox()

Creates a new .

Example

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

PercentTextBox()

Creates a new .

Example

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

IntegerTextBox()

Creates a new .

Example

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

NumericTextBoxFor(System.Linq.Expressions.Expression)

Creates a new .

Parameters

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

Example

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

NumericTextBoxFor(System.Linq.Expressions.Expression)

Creates a new .

Parameters

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

Example

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

IntegerTextBoxFor(System.Linq.Expressions.Expression)

Creates a new .

Parameters

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

Example

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

IntegerTextBoxFor(System.Linq.Expressions.Expression)

Creates a new .

Parameters

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

Example

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

IntegerTextBoxFor(System.Linq.Expressions.Expression)

Creates a new .

Parameters

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

Example

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

IntegerTextBoxFor(System.Linq.Expressions.Expression)

Creates a new .

Parameters

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

Example

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

CurrencyTextBoxFor(System.Linq.Expressions.Expression)

Creates a new .

Parameters

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

Example

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

CurrencyTextBoxFor(System.Linq.Expressions.Expression)

Creates a new .

Parameters

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

Example

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

PercentTextBoxFor(System.Linq.Expressions.Expression)

Creates a new .

Parameters

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

Example

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

PercentTextBoxFor(System.Linq.Expressions.Expression)

Creates a new .

Parameters

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

Example

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

OrgChart()

Creates a

Example

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

OTPInput()

Creates a new OTPInput.

Example

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

OTPInputFor(System.Linq.Expressions.Expression)

Creates a new .

Parameters

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

Example

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

Pager()

Creates a new .

Example

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

PanelBar()

Creates a new .

Example

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

PDFViewer()

Creates a new .

Example

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

PivotConfigurator()

Creates a new .

Example

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

PivotConfiguratorButton()

Creates a new .

Example

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

PivotConfiguratorV2()

Creates a new .

Example

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

PivotContainer()

Creates a new .

Example

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

PivotGrid()

Creates a new .

Example

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

PivotGrid()

Creates a new .

Example

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

PivotGridV2()

Creates a new .

Example

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

PivotGridV2()

Creates a new .

Example

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

Popover()

Creates a new Popover.

Example

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

ProgressBar()

PropertyGrid()

Creates a new .

Example

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

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

Parameters

model - T

QRCode()

RadialGauge()

RadialGaugeFor(System.Linq.Expressions.Expression)

Parameters

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

RadialGaugeFor(System.Linq.Expressions.Expression)

Parameters

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

RadioButton()

Creates a new .

Example

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

RadioButtonFor(System.Linq.Expressions.Expression)

Creates a new .

Parameters

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

Example

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

ActionSheet()

Creates a new AppBar.

Example

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

AIPrompt()

Creates a new AIPrompt.

Example

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

AppBar()

Creates a new AppBar.

Example

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

ArcGauge()

AutoComplete()

Creates a new .

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 .

Parameters

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

Example

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

Avatar()

Creates a new Avatar.

Example

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

Badge()

Barcode()

BottomNavigation()

Creates a new BottomNavigation.

Example

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

Creates a new .

Example

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

Button()

ButtonGroup()

Calendar()

Creates a new .

Example

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

Captcha()

Creates a new .

Example

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

CaptchaFor(System.Linq.Expressions.Expression)

Creates a new .

Parameters

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

Example

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

Chart()

Creates a new unbound .

Example

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

Chart()

Creates a new unbound .

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.

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.

Example

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

ChartBreadcrumb()

Creates a new unbound .

Example

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

ChartWizard()

Creates a new unbound .

Example

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

ChartWizard()

Creates a new unbound .

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.

Example

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

Chat()

Creates a new .

Example

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

CheckBox()

Creates a new .

Example

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

CheckBoxFor(System.Linq.Expressions.Expression)

Creates a new .

Parameters

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

Example

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

CheckBoxGroup()

CheckBoxGroupFor(System.Linq.Expressions.Expression)

Parameters

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

Chip()

Creates a new .

Example

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

ChipList()

Creates a new .

Example

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

CircularGauge()

CircularProgressBar()

ColorGradient()

ColorPalette()

ColorPicker()

Creates a new .

Example

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

ColorPickerFor(System.Linq.Expressions.Expression)

Creates a new .

Parameters

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

Example

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

ComboBox()

Creates a new .

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 bound to a model field.

Parameters

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

Example

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

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

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

DeferredScriptFile(System.Boolean)

Parameters

module - System.Boolean

DeferredScriptFile(System.String,System.Boolean)

Parameters

nonce - System.String
renderAsModule - System.Boolean

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.

DefaultSettings(System.Boolean,System.Boolean)

Parameters

renderScriptTags - System.Boolean
renderAsModule - System.Boolean

DataSource()

Creates a new bound to the specified data item type.

Example

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

DateInput()

Creates a new .

Example

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

DateInputFor(System.Linq.Expressions.Expression)

Creates a new bound to model field

Parameters

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

Example

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

DateInputFor(System.Linq.Expressions.Expression)

Creates a new bound to model field

Parameters

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

Example

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

DateInputFor(System.Linq.Expressions.Expression)

Creates a new bound to model field

Parameters

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

Example

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

DateInputFor(System.Linq.Expressions.Expression)

Creates a new bound to model field

Parameters

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

Example

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

DateInputFor(System.Linq.Expressions.Expression)

Creates a new bound to model field

Parameters

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

Example

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

DateInputFor(System.Linq.Expressions.Expression)

Creates a new bound to model field

Parameters

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

Example

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

DatePicker()

Creates a new .

Example

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

DatePickerFor(System.Linq.Expressions.Expression)

Creates a new .

Parameters

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

Example

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

DatePickerFor(System.Linq.Expressions.Expression)

Creates a new .

Parameters

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

Example

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

DatePickerFor(System.Linq.Expressions.Expression)

Creates a new .

Parameters

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

Example

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

DatePickerFor(System.Linq.Expressions.Expression)

Creates a new .

Parameters

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

Example

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

DateRangePicker()

Creates a new .

Example

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

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

Creates a new .

Parameters

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

Example

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

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

Creates a new .

Parameters

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

Example

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

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

Creates a new .

Parameters

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

Example

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

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

Creates a new .

Parameters

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

Example

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

DateTimePicker()

Creates a new .

Example

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

DateTimePickerFor(System.Linq.Expressions.Expression)

Creates a new bound to model field

Parameters

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

Example

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

DateTimePickerFor(System.Linq.Expressions.Expression)

Creates a new bound to model field

Parameters

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

Example

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

Diagram()

Creates a

Example

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

Diagram()

Creates a

Example

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

Dialog()

Creates a new .

Example

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

DockManager()

Creates a new .

Example

Razor
 
             @( Html.Kendo().DockManager()
                        .Name("DockManager")
            )
             
In this article
PropertiesHtmlHelper - IHtmlHelperMethodsRadioGroup()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)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)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()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()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)ActionSheet()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()
Not finding the help you need?
Contact Support