WidgetFactory
Properties
HtmlHelper - IHtmlHelper
Methods
ActionSheet()
Creates a new AppBar.
RETURNS
Returns a new instance of ActionSheetBuilder for configuring the component.
Example
@(Html.Kendo().ActionSheet()
.Name("ActionSheet")
)
AIPrompt()
Creates a new AIPrompt.
RETURNS
Returns a new instance of AIPromptBuilder for configuring the component.
Example
@(Html.Kendo().AIPrompt()
.Name("AIPrompt")
)
AppBar()
Creates a new AppBar.
RETURNS
Returns a new instance of AppBarBuilder for configuring the component.
Example
@(Html.Kendo().AppBar<Order>()
.Name("AppBar")
)
ArcGauge()
Creates a new ArcGauge.
RETURNS
Returns a new instance of ArcGaugeBuilder for configuring the component.
Example
@(Html.Kendo().ArcGauge()
.Name("ArcGauge")
)
AutoComplete()
Creates a new AutoComplete.
RETURNS
Returns a new instance of AutoCompleteBuilder for configuring the component.
Example
@( 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
@( Html.Kendo().AutoCompleteFor(m=>m.Property) )
Avatar()
Creates a new Avatar.
RETURNS
Returns a new instance of AvatarBuilder for configuring the component.
Example
@(Html.Kendo().Avatar()
.Name("Avatar")
)
Badge()
Creates a new Badge.
RETURNS
Returns a new instance of BadgeBuilder for configuring the component.
Example
@(Html.Kendo().Badge()
.Name("Badge")
)
Barcode()
Creates a new Barcode.
RETURNS
Returns a new instance of BarcodeBuilder for configuring the component.
Example
@(Html.Kendo().Barcode()
.Name("Barcode")
)
BottomNavigation()
Creates a new BottomNavigation.
RETURNS
Returns a new instance of BottomNavigationBuilder for configuring the component.
Example
@(Html.Kendo().BottomNavigation()
.Name("BottomNavigation")
)
Breadcrumb()
Creates a new Breadcrumb.
RETURNS
Returns a new instance of BreadcrumbBuilder for configuring the component.
Example
@( Html.Kendo().Breadcrumb()
.Name("Breadcrumb")
)
Button()
Creates a new Button.
RETURNS
Returns a new instance of ButtonBuilder for configuring the component.
Example
@(Html.Kendo().Button()
.Name("Button")
)
ButtonGroup()
Creates a new ButtonGroup.
RETURNS
Returns a new instance of ButtonGroupBuilder for configuring the component.
Example
@(Html.Kendo().ButtonGroup()
.Name("ButtonGroup")
)
Calendar()
Creates a new Calendar.
RETURNS
Returns a new instance of CalendarBuilder for configuring the component.
Example
@( Html.Kendo().Calendar()
.Name("Calendar")
)
Captcha()
Creates a new Captcha.
RETURNS
Returns a new instance of CaptchaBuilder for configuring the component.
Example
@( 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
@( Html.Kendo().CaptchaFor(m => m.Captcha)
)
Chart()
Creates a new unbound Chart.
RETURNS
Returns a new instance of ChartBuilder for configuring the component.
Example
@(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
@(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
@(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
@(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
@(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
@(Html.Kendo().ChartWizard()
.Name("ChartWizard")
)
ChartWizard()
Creates a new unbound ChartWizard.
RETURNS
Returns a new instance of ChartWizardBuilder for configuring the component.
Example
@(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
@(Html.Kendo().ChartWizard(Model)
.Name("ChartWizard")
)
Chat()
Creates a new Chat.
RETURNS
Returns a new instance of ChatBuilder for configuring the component.
Example
@( Html.Kendo().Chat()
.Name("Chat")
)
CheckBox()
Creates a new CheckBox.
RETURNS
Returns a new instance of CheckBoxBuilder for configuring the component.
Example
@(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
@( 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
@( Html.Kendo().Chip()
.Name("Chip")
)
ChipList()
Creates a new ChipList.
RETURNS
Returns a new instance of ChipListBuilder for configuring the component.
Example
@( 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
@(Html.Kendo().ColorGradient()
.Name("ColorGradient")
)
ColorPalette()
Creates a new ColorPalette.
RETURNS
Returns a new instance of ColorPaletteBuilder for configuring the component.
Example
@(Html.Kendo().ColorPalette()
.Name("ColorPalette")
)
ColorPicker()
Creates a new ColorPicker.
RETURNS
Returns a new instance of ColorPickerBuilder for configuring the component.
Example
@(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
@( Html.Kendo().ColorPickerFor(m=>m.Property) )
ComboBox()
Creates a new ComboBox.
RETURNS
Returns a new instance of ComboBoxBuilder for configuring the component.
Example
@( 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
@Html.Kendo().ComboBoxFor(m => m.Property)
ContextMenu()
Creates a new ContextMenu.
RETURNS
Returns a new instance of ContextMenuBuilder for configuring the component.
Example
@(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
@(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
@( 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
@(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
@(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
@(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
@(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
@(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
@(Html.Kendo().DateInputFor(m => m.Property))
DatePicker()
Creates a new DatePicker.
RETURNS
A DatePickerBuilder instance that can be used to configure the DatePicker.
Example
@( 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
@( 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
@( 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
@( 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
@( Html.Kendo().DatePickerFor(m=>m.Property) )
DateRangePicker()
Creates a new DateRangePicker.
RETURNS
A DateRangePickerBuilder instance that can be used to configure the DateRangePicker.
Example
@( 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
@( 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
@( 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
@( 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
@( 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
@(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
@(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
@(Html.Kendo().DateTimePickerFor(m => m.Property))
Diagram()
RETURNS
A DiagramBuilder instance that can be used to configure the Diagram.
Example
@( Html.Kendo().Diagram()
.Name("Diagram")
)
Diagram()
RETURNS
A DiagramBuilder instance that can be used to configure the Diagram.
Example
@( Html.Kendo().Diagram()
.Name("Diagram")
)
Dialog()
Creates a new Window.
RETURNS
A DialogBuilder instance that can be used to configure the Dialog.
Example
@( Html.Kendo().Window()
.Name("Window")
)
DockManager()
Creates a new DockManager.
RETURNS
A DockManagerBuilder instance that can be used to configure the DockManager.
Example
@( Html.Kendo().DockManager()
.Name("DockManager")
)
Drawer()
Creates a new Drawer.
RETURNS
A DrawerBuilder instance that can be used to configure the Drawer.
Example
@( Html.Kendo().Drawer()
.Name("Drawer")
)
DropDownButton()
Creates a new DropDownButton.
RETURNS
A DropDownButtonBuilder instance that can be used to configure the DropDownButton.
Example
@( Html.Kendo().DropDownButton()
.Name("DropDownButton")
)
DropDownList()
Creates a new DropDownList.
RETURNS
A DropDownListBuilder instance that can be used to configure the DropDownList.
Example
@( Html.Kendo().DropDownList()
.Name("DropDownList")
.Items(items =>
{
items.Add().Text("First Item");
items.Add().Text("Second Item");
})
)
DropDownListFor(System.Linq.Expressions.Expression)
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
@Html.Kendo().DropDownListFor(m => m.Property)
DropDownTree()
Creates a new DropDownTree.
RETURNS
A DropDownTreeBuilder instance that can be used to configure the DropDownTree.
Example
@( Html.Kendo().DropDownTree()
.Name("DropDownTree")
.Items(items =>
{
items.Add().Text("First Item");
items.Add().Text("Second Item");
})
)
DropDownTreeFor(System.Linq.Expressions.Expression)
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
@Html.Kendo().DropDownTreeFor(m => m.Property)
Editor()
RETURNS
A EditorBuilder instance that can be used to configure the Editor.
Example
@( Html.Kendo().Editor()
.Name("Editor")
)
EditorFor(System.Linq.Expressions.Expression)
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
@( Html.Kendo().EditorFor(m=>m.Property)
)
ExpansionPanel()
Creates a new ExpansionPanel.
RETURNS
A ExpansionPanelBuilder instance that can be used to configure the ExpansionPanel.
Example
@(Html.Kendo().ExpansionPanel()
.Name("ExpansionPanel")
)
FileManager()
Creates a new FileManager.
RETURNS
A FileManagerBuilder instance that can be used to configure the FileManager.
Example
@( Html.Kendo().FileManager()
.Name("fileManager")
)
Filter()
Creates a new Filter.
RETURNS
A FilterBuilder instance that can be used to configure the Filter.
Example
@(Html.Kendo().Filter<Order>()
.Name("Filter")
)
FlatColorPicker()
Creates a new FlatColorPicker.
RETURNS
A FlatColorPickerBuilder instance that can be used to configure the FlatColorPicker.
Example
@(Html.Kendo().FlatColorPicker()
.Name("FlatColorPicker")
)
FloatingActionButton()
Creates a new FloatingActionButton.
RETURNS
A FloatingActionButtonBuilder instance that can be used to configure the FloatingActionButton.
Example
@(Html.Kendo().FloatingActionButton()
.Name("FloatingActionButton")
)
Form()
Creates a new .
RETURNS
A FormBuilder instance that can be used to configure the Form.
Example
@(Html.Kendo().Form<Order>()
.Name("Form")
)
Form()
Creates a new .
RETURNS
A FormBuilder instance that can be used to configure the Form.
Example
@(Html.Kendo().Form<Order>()
.Name("Form")
)
Gantt()
Creates a new Gantt.
RETURNS
A GanttBuilder instance that can be used to configure the Gantt.
Example
@( 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
@( 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
@( 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
@(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
@(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
@(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
@( Html.Kendo().GridLayout()
.Name("GridLayout")
)
ImageEditor()
Creates a new ImageEditor.
RETURNS
A ImageEditorBuilder instance that can be used to configure the ImageEditor.
Example
@( Html.Kendo().ImageEditor()
.Name("imageEditor")
)
InlineAIPrompt()
Creates a new InlineAIPrompt.
RETURNS
Returns a new instance of InlineAIPromptBuilder for configuring the component.
Example
@(Html.Kendo().InlineAIPrompt()
.Name("inlineaiprompt")
)
LinearGauge()
Creates a new LinearGauge.
RETURNS
A LinearGaugeBuilder instance that can be used to configure the LinearGauge.
Example
@( 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
@( 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
@( 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
@(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
@(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
@(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
@(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
@(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
@(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
@( Html.Kendo().Loader()
.Name("Loader")
)
Map()
Creates a new Map.
RETURNS
A MapBuilder instance that can be used to configure the Map.
Example
@( Html.Kendo().Map()
.Name("Map")
)
MaskedTextBox()
Creates a new MaskedTextBox.
RETURNS
A MaskedTextBoxBuilder instance that can be used to configure the MaskedTextBox.
Example
@( 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
@( 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
@(Html.Kendo().MediaPlayer()
.Name("MediaPlayer")
)
Menu()
Creates a new Menu.
RETURNS
A MenuBuilder instance that can be used to configure the Menu.
Example
@(Html.Kendo().Menu()
.Name("Menu")
)
MultiColumnComboBox()
Creates a new MultiColumnComboBox.
RETURNS
A MultiColumnComboBoxBuilder instance that can be used to configure the MultiColumnComboBox.
Example
@( 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
@Html.Kendo().MultiColumnComboBoxFor(m => m.Property)
MultiSelect()
Creates a new MultiSelect.
RETURNS
A MultiSelectBuilder instance that can be used to configure the MultiSelect.
Example
@( 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
@Html.Kendo().MultiSelectFor(m => m.Property)
MultiViewCalendar()
Creates a new MultiViewCalendar.
RETURNS
A MultiViewCalendarBuilder instance that can be used to configure the MultiViewCalendar.
Example
@( Html.Kendo().MultiViewCalendar()
.Name("MultiViewCalendar")
)
Notification()
RETURNS
A NotificationBuilder instance that can be used to configure the Notification.
Example
@( Html.Kendo().Notification()
.Name("Notification1");
)
NumericTextBox()
Creates a new NumericTextBox.
RETURNS
A NumericTextBoxBuilder instance that can be used to configure the NumericTextBox.
Example
@(Html.Kendo().NumericTextBox()
.Name("NumericTextBox")
)
NumericTextBox()
Creates a new NumericTextBox.
RETURNS
A NumericTextBoxBuilder instance that can be used to configure the NumericTextBox.
Example
@(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
@(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
@(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
@(Html.Kendo().IntegerTextBox()
.Name("IntegerTextBox")
)
NumericTextBoxFor(System.Linq.Expressions.Expression)
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
@(Html.Kendo().NumericTextBoxFor(m=>m.Property))
NumericTextBoxFor(System.Linq.Expressions.Expression)
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
@(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
@(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
@(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
@(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
@(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
@(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
@(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
@(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
@(Html.Kendo().PercentTextBoxFor(m=>m.Property))
OrgChart()
RETURNS
A OrgChartBuilder instance that can be used to configure the OrgChart.
Example
@(Html.Kendo().OrgChart()
.Name("OrgChart")
)
OTPInput()
Creates a new OTPInput.
RETURNS
A OTPInputBuilder instance that can be used to configure the OTPInput.
Example
@(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
@( Html.Kendo().OTPInput(m => m.Password) )
Pager()
Creates a new Pager.
RETURNS
A PagerBuilder instance that can be used to configure the Pager.
Example
@( Html.Kendo().Pager()
.Name("Pager")
)
PanelBar()
Creates a new PanelBar.
RETURNS
A PanelBarBuilder instance that can be used to configure the PanelBar.
Example
@( 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
@( Html.Kendo().PDFViewer()
.Name("PanelBar")
)
PivotConfigurator()
Creates a new PivotConfigurator.
RETURNS
A PivotConfiguratorBuilder instance that can be used to configure the PivotConfigurator.
Example
@( Html.Kendo().PivotConfigurator()
.Name("PivotConfigurator")
)
PivotConfiguratorButton()
Creates a new PivotConfiguratorButton.
RETURNS
A PivotConfiguratorButtonBuilder instance that can be used to configure the PivotConfiguratorButton.
Example
@( Html.Kendo().PivotConfiguratorButton()
.Name("PivotConfiguratorButton")
)
PivotConfiguratorV2()
Creates a new PivotConfiguratorV2.
RETURNS
A PivotConfiguratorV2Builder instance that can be used to configure the PivotConfiguratorV2.
Example
@( Html.Kendo().PivotConfigurator()
.Name("PivotConfigurator")
)
PivotContainer()
Creates a new PivotContainer.
RETURNS
A PivotContainerBuilder instance that can be used to configure the PivotContainer.
Example
@( Html.Kendo().PivotContainer()
.Name("PivotContainer")
)
PivotGrid()
Creates a new PivotGrid.
RETURNS
A PivotGridBuilder instance that can be used to configure the PivotGrid.
Example
@( Html.Kendo().PivotGrid()
.Name("PivotGrid")
)
PivotGrid()
Creates a new PivotGrid.
RETURNS
A PivotGridBuilder instance that can be used to configure the PivotGrid.
Example
@( Html.Kendo().PivotGrid()
.Name("PivotGrid")
)
PivotGridV2()
Creates a new PivotGridV2.
RETURNS
A PivotGridV2Builder instance that can be used to configure the PivotGrid.
Example
@( Html.Kendo().PivotGridV2()
.Name("PivotGrid")
)
PivotGridV2()
Creates a new PivotGridV2.
RETURNS
A PivotGridV2Builder instance that can be used to configure the PivotGrid.
Example
@( Html.Kendo().PivotGridV2()
.Name("PivotGrid")
)
Popover()
Creates a new Popover.
RETURNS
A PopoverBuilder instance that can be used to configure the Popover.
Example
@(Html.Kendo().Popover()
.Name("Popover")
)
ProgressBar()
Creates a new ProgressBar.
RETURNS
A ProgressBarBuilder instance that can be used to configure the ProgressBar.
Example
@( Html.Kendo().ProgressBar()
.Name("ProgressBar")
)
PropertyGrid()
Creates a new PropertyGrid.
RETURNS
A PropertyGridBuilder instance that can be used to configure the PropertyGrid.
Example
@(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
@( Html.Kendo().QRCode()
.Name("QRCode")
)
RadialGauge()
Creates a new RadialGauge.
RETURNS
A RadialGaugeBuilder instance that can be used to configure the RadialGauge.
Example
@( 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
@( 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
@( Html.Kendo().RadialGaugeFor(m=>m.Property) )
RadioButton()
Creates a new RadioButton.
RETURNS
A RadioButtonBuilder instance that can be used to configure the RadioButton.
Example
@(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
@(Html.Kendo().RadioButtonFor(m => m.Property));
RadioGroup()
Creates a new RadioGroup.
RETURNS
A RadioGroupBuilder instance that can be used to configure the RadioGroup.
Example
@( 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
@( Html.Kendo().RadioGroupFor(m =>m.Property) )
RangeSlider()
Creates a new RangeSlider.
RETURNS
A RangeSliderBuilder instance that can be used to configure the RangeSlider.
Example
@( Html.Kendo().RangeSlider()
.Name("RangeSlider")
)
RangeSlider()
Creates a new RangeSlider.
RETURNS
A RangeSliderBuilder instance that can be used to configure the RangeSlider.
Example
@( 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
@( 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
@( Html.Kendo().RangeSlider()
.Name("RangeSlider")
)
Rating()
Creates a new Rating.
RETURNS
A RatingBuilder instance that can be used to configure the Rating.
Example
@( 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
@( Html.Kendo().RatingFor(m=>m.Property) )
RecurrenceEditor()
Creates a new RecurrenceEditor.
RETURNS
A RecurrenceEditorBuilder instance that can be used to configure the RecurrenceEditor.
Example
@( 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
@( Html.Kendo().RecurrenceEditorFor(m=>m.Property) )
ResponsivePanel()
Creates a new ResponsivePanel.
RETURNS
A ResponsivePanelBuilder instance that can be used to configure the ResponsivePanel.
Example
@( Html.Kendo().ResponsivePanel()
.Name("ResponsivePanel")
)
Sankey()
Creates a new Sankey.
RETURNS
A SankeyBuilder instance that can be used to configure the Sankey.
Example
@(Html.Kendo().Sankey()
.Name("Sankey")
)
Scheduler()
Creates a new Scheduler.
RETURNS
A SchedulerBuilder instance that can be used to configure the Scheduler.
Example
@( Html.Kendo().Scheduler<SchedulerEvent>()
.Name("Scheduler")
)
ScrollView()
Creates a new ScrollView.
RETURNS
A ScrollViewBuilder instance that can be used to configure the ScrollView.
Example
@( 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
@(Html.Kendo().Signature()
.Name("Signature")
)
SkeletonContainer()
Creates a new SkeletonContainer.
RETURNS
A SkeletonContainerBuilder instance that can be used to configure the SkeletonContainer.
Example
@(Html.Kendo().SkeletonContainer()
.Name("SkeletonContainer")
)
Slider()
Creates a new Slider.
RETURNS
A SliderBuilder instance that can be used to configure the Slider.
Example
@(Html.Kendo().Slider<double>()
.Name("Slider")
)
Slider()
Creates a new Slider.
RETURNS
A SliderBuilder instance that can be used to configure the Slider.
Example
@(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
@(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
@(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
@(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
@(Html.Kendo().SliderFor(m => m.Property))
Sortable()
Creates a new Sortable.
RETURNS
A SortableBuilder instance that can be used to configure the Sortable.
Example
@( Html.Kendo().Sortable()
.Name("Sortable")
)
Sparkline()
RETURNS
A SparklineBuilder instance that can be used to configure the Sparkline.
Example
@( Html.Kendo().Sparkline()
.Name("Sparkline")
.Series(series => {
series.Bar(new int[] { 1, 2, 3 }).Name("Total Sales");
})
)
Sparkline()
RETURNS
A SparklineBuilder instance that can be used to configure the Sparkline.
Example
@( 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
@( 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
@( Html.Kendo().Sparkline<SalesData>("sales")
.Name("Sparkline")
)
SpeechToTextButton()
Creates a new SpeechToTextButton.
RETURNS
Returns a new instance of SpeechToTextButtonBuilder for configuring the component.
Example
@( Html.Kendo().SpeechToText()
.Name("speechToText")
)
SplitButton()
Creates a new SplitButton.
RETURNS
A SplitButtonBuilder instance that can be used to configure the SplitButton.
Example
@( Html.Kendo().SplitButton()
.Name("SplitButton")
)
Splitter()
Creates a new Window.
RETURNS
A SplitterBuilder instance that can be used to configure the Splitter.
Example
@( Html.Kendo().Window()
.Name("Window")
)
Spreadsheet()
RETURNS
A SpreadsheetBuilder instance that can be used to configure the Spreadsheet.
Example
@( Html.Kendo().Spreadsheet()
.Name("Spreadsheet")
)
StackLayout()
Creates a new StackLayout.
RETURNS
A StackLayoutBuilder instance that can be used to configure the StackLayout.
Example
@( Html.Kendo().StackLayout()
.Name("StackLayout")
)
Stepper()
Creates a new Stepper.
RETURNS
A StepperBuilder instance that can be used to configure the Stepper.
Example
@( Html.Kendo().Stepper()
.Steps(steps =>
{
steps.Add().Label("First Item");
steps.Add().Label("Second Item");
})
)
StockChart()
RETURNS
A StockChartBuilder instance that can be used to configure the StockChart.
Example
@( Html.Kendo().StockChart()
.Name("StockChart")
.Series(series => {
series.Bar(new int[] { 1, 2, 3 }).Name("Total Sales");
})
)
StockChart()
RETURNS
A StockChartBuilder instance that can be used to configure the StockChart.
Example
@( 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
@( 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
@(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
@( 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
@( Html.Kendo().SwitchFor(m=>m.Property) )
TabStrip()
Creates a new TabStrip.
RETURNS
A TabStripBuilder instance that can be used to configure the TabStrip.
Example
@( 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
@( Html.Kendo().TaskBoard()
)
TaskBoard()
Creates a new TaskBoard.
RETURNS
A TaskBoardBuilder instance that can be used to configure the TaskBoard.
Example
@( Html.Kendo().TaskBoard()
)
TaskBoard()
Creates a new TaskBoard.
RETURNS
A TaskBoardBuilder instance that can be used to configure the TaskBoard.
Example
@( 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
.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
@( 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
@( Html.Kendo().TextAreaFor(m =>m.Property) )
TextBox()
Creates a new TextBox.
RETURNS
A TextBoxBuilder instance that can be used to configure the TextBox.
Example
@( Html.Kendo().TextBox()
.Name("TextBox")
)
TextBox()
Creates a new TextBox.
RETURNS
A TextBoxBuilder instance that can be used to configure the TextBox.
Example
@( 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
@( Html.Kendo().TextBoxFor(m =>m.Property) )
TileLayout()
Creates a new TileLayout.
RETURNS
A TileLayoutBuilder instance that can be used to configure the TileLayout.
Example
@( Html.Kendo().TileLayout()
.Name("TileLayout")
)
TimeDurationPicker()
Creates a new TimeDurationPicker.
RETURNS
A TimeDurationPickerBuilder instance that can be used to configure the TimeDurationPicker.
Example
@(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
@(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
@(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
@(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
@( 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
@( 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
@( 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
@( 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
@( 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
@( 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
@( Html.Kendo().TimePickerFor(m=>m.Property) )
ToggleButton()
Creates a new ToggleButton.
RETURNS
A ToggleButtonBuilder instance that can be used to configure the ToggleButton.
Example
@( Html.Kendo().ToggleButton()
.Name("toggleButton")
)
ToolBar()
RETURNS
A ToolBarBuilder instance that can be used to configure the ToolBar.
Example
@( Html.Kendo().ToolBar()
.Name("ToolBar")
)
Tooltip()
Creates a new Tooltip.
RETURNS
A TooltipBuilder instance that can be used to configure the Tooltip.
Example
@( Html.Kendo().Tooltip()
.For("Container")
)
TreeList()
RETURNS
A TreeListBuilder instance that can be used to configure the TreeList.
Example
@(Html.Kendo().TreeList()
.Name("TreeList")
)
TreeMap()
Creates a new TreeMap.
RETURNS
A TreeMapBuilder instance that can be used to configure the TreeMap.
Example
@( Html.Kendo().TreeMap()
.Name("TreeMap")
)
TreeView()
RETURNS
A TreeViewBuilder instance that can be used to configure the TreeView.
Example
@(Html.Kendo().TreeView()
.Name("TreeView")
)
Upload()
Creates a new Upload.
RETURNS
A UploadBuilder instance that can be used to configure the Upload.
Example
@( Html.Kendo().Upload()
.Name("Upload")
)
Window()
Creates a new Window.
RETURNS
A WindowBuilder instance that can be used to configure the Window.
Example
@( Html.Kendo().Window()
.Name("Window")
)
Wizard()
Creates a new Stepper.
RETURNS
A WizardBuilder instance that can be used to configure the Wizard.
Example
@( Html.Kendo().Wizard()
.Steps(steps =>
{
steps.Add().Title("First Item");
steps.Add().Title("Second Item");
})
)