diff --git a/NzbDrone.Core/NzbDrone.Core.csproj b/NzbDrone.Core/NzbDrone.Core.csproj index 873ae09db..8a3dca65d 100644 --- a/NzbDrone.Core/NzbDrone.Core.csproj +++ b/NzbDrone.Core/NzbDrone.Core.csproj @@ -91,7 +91,7 @@ bin\Debug\ DEBUG;TRACE full - AnyCPU + x86 bin\Debug\SABSync.exe.CodeAnalysisLog.xml true GlobalSuppressions.cs diff --git a/NzbDrone.Web/Libraries/Telerik.Web.Mvc.dll b/NzbDrone.Web/Libraries/Telerik.Web.Mvc.dll index 3e15bc6d6..734c0f0dc 100644 Binary files a/NzbDrone.Web/Libraries/Telerik.Web.Mvc.dll and b/NzbDrone.Web/Libraries/Telerik.Web.Mvc.dll differ diff --git a/NzbDrone.Web/Libraries/Telerik.Web.Mvc.xml b/NzbDrone.Web/Libraries/Telerik.Web.Mvc.xml index 9b98ad49b..79def37be 100644 --- a/NzbDrone.Web/Libraries/Telerik.Web.Mvc.xml +++ b/NzbDrone.Web/Libraries/Telerik.Web.Mvc.xml @@ -41,6 +41,19 @@ + + + Basic building block to locate the correct virtual path. + + + + + Returns the correct virtual path based upon the debug mode and version. + + The virtual path. + The version. + + A strongly-typed resource class, for looking up localized strings, etc. @@ -72,11 +85,21 @@ Looks up a localized string similar to Select font family. + + + Looks up a localized string similar to (inherited font). + + Looks up a localized string similar to Select font size. + + + Looks up a localized string similar to (inherited size). + + Looks up a localized string similar to Select block type. @@ -237,11 +260,6 @@ The writer. - - - Ensures the required settings. - - Writes the HTML. @@ -526,6 +544,13 @@ + + + Enables or disables the autocomplete. + + + + Defines the fluent interface for building @@ -784,6 +809,13 @@ + + + Enables or disables the combobox. + + + + Defines the fluent interface for building @@ -819,6 +851,23 @@ The Enabled method is useful when you need to enable binding based on certain conditions. + + + Sets the action, controller and route values for the select operation + + The route values of the Action method. + + + <%= Html.Telerik().DropDownList() + .Name("DropDownList") + .DataBinding(dataBinding => + { + dataBinding.Ajax().Select(MVC.Home.Indec(1).GetRouteValueDictionary()); + }) + %> + + + Sets the action, controller and route values for the select operation @@ -1153,85 +1202,155 @@ The Delay method is useful when you need to postpone request to the server for some time. - + - Defines the fluent interface for building + Defines the fluent interface for configuring the component. - + - Initializes a new instance of the class. + Initializes a new instance of the class. - The settings. + The component. - + - Defines the fluent interface for configuring the treeview webservice. + Configures the client-side events. + The client events action. + + + <%= Html.Telerik().DateTimePicker() + .Name("DateTimePicker") + .ClientEvents(events => + events.OnLoad("onLoad").OnChange("onChange") + ) + %> + + - + - Initializes a new instance of the class. + Configures the effects of the dateTimePicker. - The settings. + The action which configures the effects. + + + <%= Html.Telerik().DateTimePicker() + .Name("DateTimePicker") + .Effects(fx => + { + fx.Height() + .Opacity() + .OpenDuration(AnimationDuration.Normal) + .CloseDuration(AnimationDuration.Normal); + }) + + - + - Represent item in the DropDownList/ComboBox items. + Sets the time format, which will be used to parse and format the . - + - Gets the items of the treeview. + Sets the Input HTML attributes. + The HTML attributes. - + - Use it to set selected item index + Sets whether dateTimePicker to be enabled. - Item index. - - - <%= Html.Telerik().DropDownList() - .Name("DropDownList") - .SelectedIndex(0); - %> - - - + - Use it to configure Data binding. + Sets the value of the dateTimePicker input - Action that configures the data binding options. - - - <%= Html.Telerik().DropDownList() - .Name("DropDownList") - .DataBinding(dataBinding => dataBinding - .Ajax().Select("_AjaxLoading", "DropDownList") - ); - %> - - - + - Initializes a new instance of the class. + Sets the value of the dateTimePicker input - The client events. - The view context. - + - Defines the inline handler of the OnLoad client-side event + Sets the minimal date, which can be selected in DateTimePicker. - The action defining the inline handler. + + + + Sets the minimal date, which can be selected in DateTimePicker. + + + + + Sets the maximal date, which can be selected in DateTimePicker. + + + + + Sets the maximal date, which can be selected in DateTimePicker. + + + + + Sets the minimal time, which can be selected in DateTimePicker. + + + + + Sets the minimal time, which can be selected in DateTimePicker. + + + + + Sets the maximal time, which can be selected in DateTimePicker. + + + + + Sets the maximal time, which can be selected in DateTimePicker. + + + + + Sets the interval between hours. + + + + + Sets the title of the DateTimePicker button. + + + + + Sets the title of the DateTimePicker button. + + + + + Defines the fluent interface for configuring timepicker client events. + + + + + Initializes a new instance of the class. + + Timepicker client-side events. + The context of the View. + + + + Defines the inline handler of the OnChange client-side event + + The action defining the inline handler. - <% Html.Telerik().DropDownList() - .Name("DropDownList") - .ClientEvents(events => events.OnLoad(() => + <% Html.Telerik().DateTimePicker() + .Name("DateTimePicker") + .ClientEvents(events => events.OnChange(() => { %> function(e) { @@ -1244,30 +1363,30 @@ - + - Defines the name of the JavaScript function that will handle the the OnLoad client-side event. + Defines the name of the JavaScript function that will handle the the OnChange client-side event. - The name of the JavaScript function that will handle the event. + The name of the JavaScript function that will handle the event. - <%= Html.Telerik().DropDownList() - .Name("DropDownList") - .ClientEvents(events => events.OnLoad("onLoad")) + <%= Html.Telerik().DateTimePicker() + .Name("DateTimePicker") + .ClientEvents(events => events.OnChange("onChange")) %> - + - Defines the inline handler of the OnChange client-side event + Defines the inline handler of the OnLoad client-side event - The action defining the inline handler. + The action defining the inline handler. - <% Html.Telerik().DropDownList() - .Name("DropDownList") - .ClientEvents(events => events.OnChange(() => + <% Html.Telerik().DateTimePicker() + .Name("DateTimePicker") + .ClientEvents(events => events.OnLoad(() => { %> function(e) { @@ -1280,29 +1399,29 @@ - + - Defines the name of the JavaScript function that will handle the the OnChange client-side event. + Defines the name of the JavaScript function that will handle the the OnLoad client-side event. - The name of the JavaScript function that will handle the event. + The name of the JavaScript function that will handle the event. - <%= Html.Telerik().DropDownList() - .Name("DropDownList") - .ClientEvents(events => events.OnChange("onChange")) + <%= Html.Telerik().DateTimePicker() + .Name("DateTimePicker") + .ClientEvents(events => events.OnLoad("onLoad")) %> - + Defines the inline handler of the OnOpen client-side event - The action defining the inline handler. + The action defining the inline handler. - <% Html.Telerik().DropDownList() - .Name("DropDownList") + <% Html.Telerik().DateTimePicker() + .Name("DateTimePicker") .ClientEvents(events => events.OnOpen(() => { %> @@ -1316,29 +1435,29 @@ - + Defines the name of the JavaScript function that will handle the the OnOpen client-side event. The name of the JavaScript function that will handle the event. - <%= Html.Telerik().DropDownList() - .Name("DropDownList") + <%= Html.Telerik().DateTimePicker() + .Name("DateTimePicker") .ClientEvents(events => events.OnOpen("onOpen")) %> - + Defines the inline handler of the OnClose client-side event - The action defining the inline handler. + The action defining the inline handler. - <% Html.Telerik().DropDownList() - .Name("DropDownList") + <% Html.Telerik().DateTimePicker() + .Name("DateTimePicker") .ClientEvents(events => events.OnClose(() => { %> @@ -1352,52 +1471,272 @@ - + Defines the name of the JavaScript function that will handle the the OnClose client-side event. The name of the JavaScript function that will handle the event. - <%= Html.Telerik().DropDownList() - .Name("DropDownList") + <%= Html.Telerik().DateTimePicker() + .Name("DateTimePicker") .ClientEvents(events => events.OnClose("onClose")) %> - + - Defines the inline handler of the OnDataBinding client-side event + Defines the fluent interface for building - The action defining the inline handler. - - - <% Html.Telerik().DropDownList() - .Name("DropDownList") - .ClientEvents(events => events.OnDataBinding(() => - { - %> - function(e) { - //event handling code - } - <% - })) - .Render(); - %> - - - + - Defines the name of the JavaScript function that will handle the the OnDataBinding client-side event. + Initializes a new instance of the class. - The name of the JavaScript function that will handle the event. + The settings. + + + + Defines the fluent interface for configuring the treeview webservice. + + + + + Initializes a new instance of the class. + + The settings. + + + + Represent item in the DropDownList/ComboBox items. + + + + + Gets the items of the treeview. + + + + + Use it to set selected item index + + Item index. <%= Html.Telerik().DropDownList() .Name("DropDownList") - .ClientEvents(events => events.OnDataBinding("OnDataBinding")) + .SelectedIndex(0); + %> + + + + + + Use it to configure Data binding. + + Action that configures the data binding options. + + + <%= Html.Telerik().DropDownList() + .Name("DropDownList") + .DataBinding(dataBinding => dataBinding + .Ajax().Select("_AjaxLoading", "DropDownList") + ); + %> + + + + + + Enables or disables the dropdownlist. + + + + + + + Initializes a new instance of the class. + + The client events. + The view context. + + + + Defines the inline handler of the OnLoad client-side event + + The action defining the inline handler. + + + <% Html.Telerik().DropDownList() + .Name("DropDownList") + .ClientEvents(events => events.OnLoad(() => + { + %> + function(e) { + //event handling code + } + <% + })) + .Render(); + %> + + + + + + Defines the name of the JavaScript function that will handle the the OnLoad client-side event. + + The name of the JavaScript function that will handle the event. + + + <%= Html.Telerik().DropDownList() + .Name("DropDownList") + .ClientEvents(events => events.OnLoad("onLoad")) + %> + + + + + + Defines the inline handler of the OnChange client-side event + + The action defining the inline handler. + + + <% Html.Telerik().DropDownList() + .Name("DropDownList") + .ClientEvents(events => events.OnChange(() => + { + %> + function(e) { + //event handling code + } + <% + })) + .Render(); + %> + + + + + + Defines the name of the JavaScript function that will handle the the OnChange client-side event. + + The name of the JavaScript function that will handle the event. + + + <%= Html.Telerik().DropDownList() + .Name("DropDownList") + .ClientEvents(events => events.OnChange("onChange")) + %> + + + + + + Defines the inline handler of the OnOpen client-side event + + The action defining the inline handler. + + + <% Html.Telerik().DropDownList() + .Name("DropDownList") + .ClientEvents(events => events.OnOpen(() => + { + %> + function(e) { + //event handling code + } + <% + })) + .Render(); + %> + + + + + + Defines the name of the JavaScript function that will handle the the OnOpen client-side event. + + The name of the JavaScript function that will handle the event. + + + <%= Html.Telerik().DropDownList() + .Name("DropDownList") + .ClientEvents(events => events.OnOpen("onOpen")) + %> + + + + + + Defines the inline handler of the OnClose client-side event + + The action defining the inline handler. + + + <% Html.Telerik().DropDownList() + .Name("DropDownList") + .ClientEvents(events => events.OnClose(() => + { + %> + function(e) { + //event handling code + } + <% + })) + .Render(); + %> + + + + + + Defines the name of the JavaScript function that will handle the the OnClose client-side event. + + The name of the JavaScript function that will handle the event. + + + <%= Html.Telerik().DropDownList() + .Name("DropDownList") + .ClientEvents(events => events.OnClose("onClose")) + %> + + + + + + Defines the inline handler of the OnDataBinding client-side event + + The action defining the inline handler. + + + <% Html.Telerik().DropDownList() + .Name("DropDownList") + .ClientEvents(events => events.OnDataBinding(() => + { + %> + function(e) { + //event handling code + } + <% + })) + .Render(); + %> + + + + + + Defines the name of the JavaScript function that will handle the the OnDataBinding client-side event. + + The name of the JavaScript function that will handle the event. + + + <%= Html.Telerik().DropDownList() + .Name("DropDownList") + .ClientEvents(events => events.OnDataBinding("OnDataBinding")) %> @@ -1718,6 +2057,18 @@ Builder, which sets different slide properties. + + + + + + + + + Simple wrapper used to trick the Grid's generic DataSource when custom binding is used + + + Defines the fluent interface for configuring grid editing. @@ -1745,6 +2096,14 @@ The Enabled method is useful when you need to enable grid editing on certain conditions. + + + Specify an editor template which to be used for InForm or PopUp modes + + name of the editor template + This settings is applicable only when Mode is + or + Enables or disables delete confirmation. @@ -1757,9 +2116,12 @@ %> - - The Enabled method is useful when you need to enable grid editing on certain conditions. - + + + + Gets the HTML attributes of the form rendered during editing + + The attributes. @@ -1807,6 +2169,20 @@ + + + Sets the HTML attributes applied to the footer cell of the column. + + The attributes. + + + <%= Html.Telerik().Grid(Model) + .Name("Grid") + .Columns(columns => columns.Bound(o => o.OrderID).FooterHtmlAttributes(new {@class="order-footer"})) + %> + + + Sets the HTML attributes applied to the content cell of the column. @@ -1894,6 +2270,42 @@ + + + Sets the header template for the column. + + The action defining the template. + + + + Sets the header template for the column. + + The string defining the template. + + + + Sets the header template for the column. + + The action defining the template. + + + + Sets the footer template for the column. + + The action defining the template. + + + + Sets the footer template for the column. + + The string defining the template. + + + + Sets the footer template for the column. + + The action defining the template. + Gets or sets the column. @@ -1921,7 +2333,13 @@ The Image HTML attributes. - + + + Determines if group header should be shown. + + true if visible, otherwise false. + + Gets or sets a value indicating whether member access expression used by this builder should be lifted to null. The default value is true; @@ -2766,6 +3184,13 @@ The HTML attributes. + + + Enables or disables the textbox. + + + + @@ -2840,29 +3265,6 @@ source is null. - - - Resolves this instance. - - The type of the service. - - - - - Registers the specified service as singleton. - - The type of the service. - The service. - - - - - Registers the specified factory. - - The type of the service. - The factory. - - ReSharper disable UnusedParameter.Local @@ -3073,45 +3475,6 @@ is null. - - - Default Service locator. - - - - - Initializes a new instance of the class. - - if set to true [debug mode]. - - - - Resolves this instance. - - The type of the service. - - - - - Registers the specified service as singleton. - - The type of the service. - The service. - - - - - Registers the specified factory. - - The type of the service. - The factory. - - - - - Disposes the resources. - - Represents an attribute that is used to populate in view data. @@ -3787,6 +4150,12 @@ Name of the route. + + + Sets the action to which the date should navigate + + The route values of the Action method. + Sets the action, controller and route values. @@ -3922,14 +4291,6 @@ Xml file based sitemap. - - - Initializes a new instance of the class. - - The path resolver. - The file system. - The cache manager. - Initializes a new instance of the class. @@ -4140,6 +4501,12 @@ List of objects + + + Sets the action to which the date should navigate + + The route values of the Action method. + Sets the action to which the date should navigate @@ -4225,6 +4592,16 @@ Gets the template of the column. + + + Gets the header template of the column. + + + + + Gets the footer template of the column. + + Gets or sets the title of the column. @@ -4252,6 +4629,12 @@ The header HTML attributes. + + + Gets the footer HTML attributes. + + The footer HTML attributes. + Gets or sets a value indicating whether this column is visible. @@ -4309,6 +4692,23 @@ The Enabled method is useful when you need to enable binding based on certain conditions. + + + Sets the action, controller and route values for the select operation + + The route values of the Action method. + + + <%= Html.Telerik().Grid(Model) + .Name("Grid") + .DataBinding(dataBinding => + { + dataBinding.Ajax().Select(MVC.Home.Index().GetRouteValueDictionary()); + }) + %> + + + Sets the action, controller and route values for the select operation @@ -4436,6 +4836,23 @@ + + + Sets the action, controller and route values for the insert operation + + The route values of the Action method. + + + <%= Html.Telerik().Grid(Model) + .Name("Grid") + .DataBinding(dataBinding => + { + dataBinding.Ajax().Insert(MVC.Home.Index(1).GetRouteValueDictionary()); + }) + %> + + + Sets the action, controller and route values for insert operation @@ -4563,9 +4980,26 @@ + + + Sets the action, controller and route values for the update operation + + The route values of the Action method. + + + <%= Html.Telerik().Grid(Model) + .Name("Grid") + .DataBinding(dataBinding => + { + dataBinding.Ajax().Update(MVC.Home.Index(1).GetRouteValueDictionary()); + }) + %> + + + - Sets the action, controller and route values for delete operation + Sets the action, controller and route values for update operation Name of the action. Name of the controller. @@ -4576,7 +5010,7 @@ .Name("Grid") .DataBinding(dataBinding => { - dataBinding.Ajax().Insert("Index", "Home", new RouteValueDictionary{ {"id", 1} }); + dataBinding.Ajax().Update(MVC.Home.Index(1).GetRouteValueDictionary()); }) %> @@ -4690,6 +5124,23 @@ + + + Sets the action, controller and route values for the delete operation + + The route values of the Action method. + + + <%= Html.Telerik().Grid(Model) + .Name("Grid") + .DataBinding(dataBinding => + { + dataBinding.Ajax().Delete(MVC.Home.Index(1).GetRouteValueDictionary()); + }) + %> + + + Sets the action, controller and route values for delete operation @@ -4887,26 +5338,31 @@ - + Defines the fluent interface for configuring the data key. The type of the model - The type of the value. - + - Initializes a new instance of the class. + Initializes a new instance of the class. The dataKey. - + Sets the RouteKey. The value. + + + Gets the HTML attributes of the form rendered during editing + + The HTML attributes. + Creates data key for the . @@ -5031,355 +5487,645 @@ - - - Defines the fluent interface for configuring TreeView drag&drop. - - - - - Initializes a new instance of the class. - - The settings. - - - - Enables / disables drag&drop functionality. - - Whether to enable or to disable the drag&drop. - - - - Allows elements to be dropped on arbitrary HTML elements - - jQuery selector that specifies the elements that qualify as drop targets. - - + - Defines the fluent interface for building + Defines the fluent interface for configuring timepicker client events. - + - Initializes a new instance of the class. + Initializes a new instance of the class. - The settings. + Timepicker client-side events. + The context of the View. - + - Enables or disables binding. + Defines the inline handler of the OnChange client-side event + The action defining the inline handler. - <%= Html.Telerik().TreeView() - .Name("TreeView") - .DataBinding(dataBinding => - { - dataBinding.Ajax().Select("Index", "Home").Enabled((bool)ViewData["ajax"]); - }) + <% Html.Telerik().TimePicker() + .Name("TimePicker") + .ClientEvents(events => events.OnChange(() => + { + %> + function(e) { + //event handling code + } + <% + })) + .Render(); %> - - The Enabled method is useful when you need to enable binding based on certain conditions. - - + - Sets the action, controller and route values for the select operation + Defines the name of the JavaScript function that will handle the the OnChange client-side event. - Name of the action. - Name of the controller. - The route values. + The name of the JavaScript function that will handle the event. - <%= Html.Telerik().TreeView() - .Name("TreeView") - .DataBinding(dataBinding => - { - dataBinding.Ajax().Select("Index", "Home", new RouteValueDictionary{ {"id", 1} }); - }) + <%= Html.Telerik().TimePicker() + .Name("TimePicker") + .ClientEvents(events => events.OnChange("onChange")) %> - + - Sets the action, controller and route values for the select operation + Defines the inline handler of the OnLoad client-side event - Name of the action. - Name of the controller. - The route values. + The action defining the inline handler. - <%= Html.Telerik().TreeView() - .Name("TreeView") - .DataBinding(dataBinding => - { - dataBinding.Ajax().Select("Index", "Home", new { {"id", 1} }); - }) + <% Html.Telerik().TimePicker() + .Name("TimePicker") + .ClientEvents(events => events.OnLoad(() => + { + %> + function(e) { + //event handling code + } + <% + })) + .Render(); %> - + - Sets the action, controller and route values for the select operation + Defines the name of the JavaScript function that will handle the the OnLoad client-side event. - Name of the action. - Name of the controller. + The name of the JavaScript function that will handle the event. - <%= Html.Telerik().TreeView() - .Name("TreeView") - .DataBinding(dataBinding => - { - dataBinding.Ajax().Select("Index", "Home"); - }) + <%= Html.Telerik().TimePicker() + .Name("TimePicker") + .ClientEvents(events => events.OnLoad("onLoad")) %> - + - Sets the route and values for the select operation + Defines the inline handler of the OnOpen client-side event - Name of the route. - The route values. + The action defining the inline handler. - <%= Html.Telerik().TreeView() - .Name("TreeView") - .DataBinding(dataBinding => - { - dataBinding.Ajax().Select("Default", "Home", new RouteValueDictionary{ {"id", 1} }); - }) + <% Html.Telerik().TimePicker() + .Name("TimePicker") + .ClientEvents(events => events.OnOpen(() => + { + %> + function(e) { + //event handling code + } + <% + })) + .Render(); %> - + - Sets the route and values for the select operation + Defines the name of the JavaScript function that will handle the the OnOpen client-side event. - Name of the route. - The route values. + The name of the JavaScript function that will handle the event. - <%= Html.Telerik().TreeView() - .Name("TreeView") - .DataBinding(dataBinding => - { - dataBinding.Ajax().Select("Default", new {id=1}); - }) + <%= Html.Telerik().TimePicker() + .Name("TimePicker") + .ClientEvents(events => events.OnOpen("onOpen")) %> - + - Sets the route name for the select operation + Defines the inline handler of the OnClose client-side event - Name of the route. + The action defining the inline handler. - <%= Html.Telerik().TreeView() - .Name("TreeView") - .DataBinding(dataBinding => - { - dataBinding.Ajax().Select("Default"); - }) + <% Html.Telerik().TimePicker() + .Name("TimePicker") + .ClientEvents(events => events.OnClose(() => + { + %> + function(e) { + //event handling code + } + <% + })) + .Render(); %> - + - Defines the fluent interface for configuring the component. + Defines the name of the JavaScript function that will handle the the OnClose client-side event. + The name of the JavaScript function that will handle the event. + + + <%= Html.Telerik().TimePicker() + .Name("TimePicker") + .ClientEvents(events => events.OnClose("onClose")) + %> + + - + - Initializes a new instance of the class. + Defines the fluent interface for configuring the component. + + + + + Initializes a new instance of the class. The component. - + - Defines the items in the TreeView + Configures the client-side events. - The add action. + The client events action. - <%= Html.Telerik().TreeView() - .Name("TreeView") - .Items(items => - { - items.Add().Text("First Item"); - items.Add().Text("Second Item"); - }) + <%= Html.Telerik().TimePicker() + .Name("TimePicker") + .ClientEvents(events => + events.OnLoad("onLoad").OnChange("onChange") + ) %> - + - Configures the client-side events. + Configures the effects of the timepicker. - The client events action. + The action which configures the effects. - <%= Html.Telerik().TreeView() - .Name("TreeView") - .ClientEvents(events => - .OnDataBinding("onDataBinding") - .OnItemDataBound("onItemDataBound") - ) - %> + <%= Html.Telerik().TimePicker() + .Name("TimePicker") + .Effects(fx => + { + fx.Height() + .Opacity() + .OpenDuration(AnimationDuration.Normal) + .CloseDuration(AnimationDuration.Normal); + }) - + - Sets the theme of the TreeView + Sets the time format, which will be used to parse and format the . - + - Binds the TreeView to a sitemap + Sets the Input HTML attributes. + + The HTML attributes. + + + + Sets whether timepicker to be enabled. + + + + + Sets the value of the timepicker input + + + + + Sets the value of the timepicker input + + + + + Sets the value of the timepicker input + + + + + Sets the minimum time, which can be selected in timepicker + + + + + Sets the minimum time, which can be selected in timepicker + + + + + Sets the minimum time, which can be selected in timepicker + + + + + Sets the maximum time, which can be selected in timepicker + + + + + Sets the maximum time, which can be selected in timepicker + + + + + Sets the maximum time, which can be selected in timepicker + + + + + Sets the interval between hours. + + + + + Sets whether timepicker to be rendered with button, which shows timeview on click. + + + + + Sets the title of the timepicker button. + + + + + Defines the fluent interface for configuring TreeView drag&drop. + + + + + Initializes a new instance of the class. + + The settings. + + + + Enables / disables drag&drop functionality. + + Whether to enable or to disable the drag&drop. + + + + Allows elements to be dropped on arbitrary HTML elements + + jQuery selector that specifies the elements that qualify as drop targets. + + + + Defines the fluent interface for building + + + + + Initializes a new instance of the class. + + The settings. + + + + Enables or disables binding. - The view data key. - The action to configure the item. <%= Html.Telerik().TreeView() .Name("TreeView") - .BindTo("examples", (item, siteMapNode) => + .DataBinding(dataBinding => { + dataBinding.Ajax().Select("Index", "Home").Enabled((bool)ViewData["ajax"]); }) %> + + The Enabled method is useful when you need to enable binding based on certain conditions. + - + - Binds the TreeView to a sitemap. + Sets the action, controller and route values - The view data key. + The route values of the Action method. - <%= Html.Telerik().TreeView() - .Name("TreeView") - .BindTo("examples") + <%= Html.Telerik().Grid(Model) + .Name("Grid") + .DataBinding(dataBinding => + { + dataBinding.Ajax().Select(MVC.Home.Index(1).GetRouteValueDictionary()); + }) %> - + - Binds the TreeView to a list of objects. The TreeView will be "flat" which means a TreeView item will be created for - every item in the data source. + Sets the action, controller and route values for the select operation - The type of the data item - The data source. - The action executed for every data bound item. + Name of the action. + Name of the controller. + The route values. <%= Html.Telerik().TreeView() .Name("TreeView") - .BindTo(new []{"First", "Second"}, (item, value) + .DataBinding(dataBinding => { - item.Text = value; + dataBinding.Ajax().Select("Index", "Home", new RouteValueDictionary{ {"id", 1} }); }) %> - + - Binds the TreeView to a list of objects. The TreeView will create a hierarchy of items using the specified mappings. + Sets the action, controller and route values for the select operation - The type of the data item - The data source. - The action which will configure the mappings + Name of the action. + Name of the controller. + The route values. <%= Html.Telerik().TreeView() .Name("TreeView") - .BindTo(Model, mapping => mapping - .For<Customer>(binding => binding - .Children(c => c.Orders) // The "child" items will be bound to the the "Orders" property - .ItemDataBound((item, c) => item.Text = c.ContactName) // Map "Customer" properties to TreeViewItem properties - ) - .For<Order<(binding => binding - .Children(o => null) // "Orders" do not have child objects so return "null" - .ItemDataBound((item, o) => item.Text = o.OrderID.ToString()) // Map "Order" properties to TreeViewItem properties - ) - ) + .DataBinding(dataBinding => + { + dataBinding.Ajax().Select("Index", "Home", new { {"id", 1} }); + }) %> - + - Use it to configure Data binding. + Sets the action, controller and route values for the select operation - Action that configures the data binding options. + Name of the action. + Name of the controller. <%= Html.Telerik().TreeView() .Name("TreeView") - .DataBinding(dataBinding => dataBinding - .Ajax().Select("_AjaxLoading", "TreeView") - ); + .DataBinding(dataBinding => + { + dataBinding.Ajax().Select("Index", "Home"); + }) %> - + - Callback for each item. + Sets the route and values for the select operation - Action, which will be executed for each item. + Name of the route. + The route values. <%= Html.Telerik().TreeView() .Name("TreeView") - .ItemAction(item => + .DataBinding(dataBinding => { - item - .Text(...) - .HtmlAttributes(...); + dataBinding.Ajax().Select("Default", "Home", new RouteValueDictionary{ {"id", 1} }); }) %> - + - Select item depending on the current URL. + Sets the route and values for the select operation - If true the item will be highlighted. + Name of the route. + The route values. <%= Html.Telerik().TreeView() .Name("TreeView") - .HighlightPath(true) + .DataBinding(dataBinding => + { + dataBinding.Ajax().Select("Default", new {id=1}); + }) %> - + - Configures the effects of the TreeView. + Sets the route name for the select operation - The action which configures the effects. + Name of the route. - <%= Html.Telerik().TreeView() - .Name("TreeView") - .Effects(fx => - { + <%= Html.Telerik().TreeView() + .Name("TreeView") + .DataBinding(dataBinding => + { + dataBinding.Ajax().Select("Default"); + }) + %> + + + + + + Defines the fluent interface for configuring the component. + + + + + Initializes a new instance of the class. + + The component. + + + + Defines the items in the TreeView + + The add action. + + + <%= Html.Telerik().TreeView() + .Name("TreeView") + .Items(items => + { + items.Add().Text("First Item"); + items.Add().Text("Second Item"); + }) + %> + + + + + + Configures the client-side events. + + The client events action. + + + <%= Html.Telerik().TreeView() + .Name("TreeView") + .ClientEvents(events => + .OnDataBinding("onDataBinding") + .OnItemDataBound("onItemDataBound") + ) + %> + + + + + + Binds the TreeView to a sitemap + + The view data key. + The action to configure the item. + + + <%= Html.Telerik().TreeView() + .Name("TreeView") + .BindTo("examples", (item, siteMapNode) => + { + }) + %> + + + + + + Binds the TreeView to a sitemap. + + The view data key. + + + <%= Html.Telerik().TreeView() + .Name("TreeView") + .BindTo("examples") + %> + + + + + + Binds the TreeView to a list of objects. The TreeView will be "flat" which means a TreeView item will be created for + every item in the data source. + + The type of the data item + The data source. + The action executed for every data bound item. + + + <%= Html.Telerik().TreeView() + .Name("TreeView") + .BindTo(new []{"First", "Second"}, (item, value) + { + item.Text = value; + }) + %> + + + + + + Binds the TreeView to a list of objects. The TreeView will create a hierarchy of items using the specified mappings. + + The type of the data item + The data source. + The action which will configure the mappings + + + <%= Html.Telerik().TreeView() + .Name("TreeView") + .BindTo(Model, mapping => mapping + .For<Customer>(binding => binding + .Children(c => c.Orders) // The "child" items will be bound to the the "Orders" property + .ItemDataBound((item, c) => item.Text = c.ContactName) // Map "Customer" properties to TreeViewItem properties + ) + .For<Order<(binding => binding + .Children(o => null) // "Orders" do not have child objects so return "null" + .ItemDataBound((item, o) => item.Text = o.OrderID.ToString()) // Map "Order" properties to TreeViewItem properties + ) + ) + %> + + + + + + Use it to configure Data binding. + + Action that configures the data binding options. + + + <%= Html.Telerik().TreeView() + .Name("TreeView") + .DataBinding(dataBinding => dataBinding + .Ajax().Select("_AjaxLoading", "TreeView") + ); + %> + + + + + + Callback for each item. + + Action, which will be executed for each item. + + + <%= Html.Telerik().TreeView() + .Name("TreeView") + .ItemAction(item => + { + item + .Text(...) + .HtmlAttributes(...); + }) + %> + + + + + + Select item depending on the current URL. + + If true the item will be highlighted. + + + <%= Html.Telerik().TreeView() + .Name("TreeView") + .HighlightPath(true) + %> + + + + + + Configures the effects of the TreeView. + + The action which configures the effects. + + + <%= Html.Telerik().TreeView() + .Name("TreeView") + .Effects(fx => + { fx.Slide() .Opacity() .OpenDuration(AnimationDuration.Normal) @@ -6131,6 +6877,20 @@ + + + Sets the action to which the item should navigate + + The route values of the Action method. + + + <%= Html.Telerik().Menu() + .Name("Menu") + .Items(items => items.Add().Text("Index").Action(MVC.Home.Index(3).GetRouteValueDictionary())) + %> + + + Sets the action to which the item should navigate @@ -6539,11 +7299,6 @@ The client events. - - - Gets or sets the theme. - - Gets the items of the treeview. @@ -6603,23 +7358,18 @@ The action which will output the content. - + Defines the fluent interface for configuring the component. - + - Initializes a new instance of the class. + Initializes a new instance of the class. The component. - - - Sets the theme of the datepicker - - - + Configures the effects of the datepicker. @@ -6638,52 +7388,52 @@ - + - Sets whether datepicker to be rendered with button, which shows calendar on click + Sets whether datepicker to be rendered with button, which shows calendar on click. - + Sets the title of the datepicker button. - + Sets the date format, which will be used to parse and format the machine date. - + Sets the value of the datepicker input - + Sets the value of the datepicker input - + Sets the minimal date, which can be selected in DatePicker. - + Sets the minimal date, which can be selected in DatePicker. - + Sets the maximal date, which can be selected in DatePicker. - + Sets the maximal date, which can be selected in DatePicker. - + Configures the client-side events. @@ -6699,29 +7449,36 @@ - + Sets the Input HTML attributes. The HTML attributes. - + + + Enables or disables the datepicker. + + + + + Defines the fluent interface for configuring datepicker client events. - + - Initializes a new instance of the class. + Initializes a new instance of the class. Datepicker client-side events. The context of the View. - + - Defines the inline handler of the OnSelect client-side event + Defines the inline handler of the OnChange client-side event - The action defining the inline handler. + The action defining the inline handler. <% Html.Telerik().DatePicker() @@ -6739,11 +7496,11 @@ - + - Defines the name of the JavaScript function that will handle the the OnSelect client-side event. + Defines the name of the JavaScript function that will handle the the OnChange client-side event. - The name of the JavaScript function that will handle the event. + The name of the JavaScript function that will handle the event. <%= Html.Telerik().DatePicker() @@ -6753,7 +7510,7 @@ - + Defines the inline handler of the OnLoad client-side event @@ -6775,7 +7532,7 @@ - + Defines the name of the JavaScript function that will handle the the OnLoad client-side event. @@ -6789,11 +7546,11 @@ - + - Defines the inline handler of the OnPopupOpen client-side event + Defines the inline handler of the OnOpen client-side event - The action defining the inline handler. + The action defining the inline handler. <% Html.Telerik().DatePicker() @@ -6811,11 +7568,11 @@ - + - Defines the name of the JavaScript function that will handle the the OnPopupOpen client-side event. + Defines the name of the JavaScript function that will handle the OnOpen client-side event. - The name of the JavaScript function that will handle the event. + The name of the JavaScript function that will handle the event. <%= Html.Telerik().DatePicker() @@ -6825,11 +7582,11 @@ - + - Defines the inline handler of the OnPopupClose client-side event + Defines the inline handler of the OnClose client-side event - The action defining the inline handler. + The action defining the inline handler. <% Html.Telerik().DatePicker() @@ -6847,11 +7604,11 @@ - + - Defines the name of the JavaScript function that will handle the the OnPopupClose client-side event. + Defines the name of the JavaScript function that will handle the OnClose client-side event. - The name of the JavaScript function that will handle the event. + The name of the JavaScript function that will handle the event. <%= Html.Telerik().DatePicker() @@ -6861,6 +7618,24 @@ + + + Sets the Url, which will be requested to return the content. + + The route values of the Action method. + + + <%= Html.Telerik().PanelBar() + .Name("PanelBar") + .Items(parent => { + + parent.Add() + .LoadContentFrom(MVC.Home.Index().GetRouteValueDictionary()); + }) + %> + + + Sets the Url, which will be requested to return the content. @@ -6981,23 +7756,21 @@ - + Sets the action, controller and route values - Name of the action. - Name of the controller. - The route values. + The route values of the Action method. <%= Html.Telerik().Grid(Model) .Name("Grid") - .Ajax(ajax => ajax.Action("Index", "Home", new {id = 1})) + .Ajax(ajax => ajax.Action(MVC.Home.Index(1).GetRouteValueDictionary())) %> - + Sets the action, controller and route values @@ -7008,7 +7781,23 @@ <%= Html.Telerik().Grid(Model) .Name("Grid") - .Ajax(ajax => ajax.Action("Index", "Home", new RouteValueDictionary{ {"id", 1} })) + .Ajax(ajax => ajax.Action("Index", "Home", new {id = 1})) + %> + + + + + + Sets the action, controller and route values + + Name of the action. + Name of the controller. + The route values. + + + <%= Html.Telerik().Grid(Model) + .Name("Grid") + .Ajax(ajax => ajax.Action("Index", "Home", new RouteValueDictionary{ {"id", 1} })) %> @@ -7154,6 +7943,12 @@ + + + Specify which editor template should be used for the column + + name of the editor template + Enables or disables sorting the column. All bound columns are sortable by default. @@ -7206,7 +8001,31 @@ - + + + Sets the template for the column. + + The action defining the template. + + + <% Html.Telerik().Grid(Model) + .Name("Grid") + .Columns(columns => columns + .Add(c => c.CustomerID) + .Template(() => + { + %> + >img + alt="<%= c.CustomerID %>" + src="<%= Url.Content("~/Content/Grid/Customers/" + c.CustomerID + ".jpg") %>" + /> + <% + }).Title("Picture");) + .Render(); + %> + + + Defines the fluent interface for configuring the . @@ -7439,7 +8258,7 @@ Defines the inline handler of the OnColumnResize client-side event. - The action defining the inline handler. + The action defining the inline handler. <% Html.Telerik().Grid(Model) @@ -7461,7 +8280,7 @@ Defines the name of the JavaScript function that will handle the the OnColumnResize client-side event. - The name of the JavaScript function that will handle the event. + The name of the JavaScript function that will handle the event. <%= Html.Telerik().Grid(Model) @@ -7471,6 +8290,42 @@ + + + Defines the inline handler of the OnColumnReorder client-side event. + + The action defining the inline handler. + + + <% Html.Telerik().Grid(Model) + .Name("Grid") + .ClientEvents(events => events.OnColumnReorder(() => + { + %> + function(e) { + //event handling code + } + <% + })) + .Render(); + %> + + + + + + Defines the name of the JavaScript function that will handle the the OnColumnResize client-side event. + + The name of the JavaScript function that will handle the event. + + + <%= Html.Telerik().Grid(Model) + .Name("Grid") + .ClientEvents(events => events.OnColumnReorder("onColumnReorder")) + %> + + + Defines the name of the JavaScript function that will handle the the OnRowSelect client-side event. @@ -8098,20 +8953,12 @@ The action. - + Appends the specified name and value to the end of this instance. The name. - The values. - - - - - Appends the specified name and value to the end of this instance. - - The name. - The values. + The HtmlTemplate. @@ -8186,7 +9033,7 @@ The type of the data item which the grid is bound to. - + Initializes a new instance of the class. @@ -8305,6 +9152,20 @@ + + + Configures the grid reordering settings + + Resizing settings configurator method + + + <%= Html.Telerik().Grid(Model) + .Name("Grid") + .Reorderable(reordering => reordering.Columns(true)) + %> + + + Sets the localization culture of the grid. @@ -8368,7 +9229,7 @@ Configure when to show footer of the grid. - If it is true, the future is visible. + If it is true, the feature is visible. @@ -8822,6 +9683,51 @@ + + + Sets the HTML content which the grid should display. + + The action which renders the message when grid has no data. + + + <% Html.Telerik().Grid() + .Name("Grid") + .NoRecordsTemplate(() => + { + %> + <strong> Hello World!!!;/strong> + <% + }) + %> + + + + + + Sets the empty message template which will be display if the grid has no data. + + The Razor inline message. + + + @(Html.Telerik().Grid() + .Name("Grid") + .NoRecordsTemplate(@<strong> Hello World!!!</strong>)) + + + + + + + Sets the empty message template which will be display if the grid has no data. + + The action which renders the message when grid has no data. + + <%= Html.Telerik().Grid() + .Name("Grid") + .NoRecordsTemplate("<strong> Hello World!!!</strong>") + %> + + Creates columns for the . @@ -8860,6 +9766,18 @@ Defines a bound column. + + + Determines if columns should be automatically generated. + + If true columns should be generated, otherwise false. + + + + Determines if columns should be automatically generated. + + Action which will be executed for each generated column. + Defines a template column. @@ -8972,6 +9890,20 @@ + + + Sets the current page of the grid. + + The page which the grid should display initially. Must be greater than zero. + + + <%= Html.Telerik().Grid(Model) + .Name("Grid") + .Pageable(paging => paging.PageTo(2)) + %> + + + Sets the pager style. @@ -9216,11 +10148,6 @@ - - - Sets the theme of the menu - - Binds the menu to a sitemap @@ -9576,6 +10503,13 @@ INavigatable extension for providing access to . + + + Sets the action, controller name and route values of object. + + The object. + The route values of the Action method. + Sets the action and controller name, along with Route values of object. @@ -9679,11 +10613,6 @@ - - - Sets the theme of the panelbar - - Configures the client-side events. @@ -10619,683 +11548,1191 @@ Editor tool icon - - - Defines the basic building block of web asset merging. - - - - - Merges the specified assets. - - Type of the content. - The asset handler path. - if set to true [is secured]. - if set to true [can compress]. - The assets. - - - - - Merges the specified asset group. - - Type of the content. - The asset handler path. - if set to true [is secured]. - if set to true [can compress]. - The asset group. - - - - - Enables zoom animation. - - - - - Defines the fluent interface for configuring the . - - - + - Initializes a new instance of the class. + Provides the factory methods for creating Telerik View Components. - The client events. - The view context. - + - Defines the inline handler of the OnLoad client-side event + Creates a - The action defining the inline handler. - <% Html.Telerik().Window() - .Name("Window") - .ClientEvents(events => events.OnLoad(() => - { - %> - function(e) { - //event handling code - } - <% - })) - .Render(); + <%= Html.Telerik().StyleSheetRegistrar() + .DefaultGroup(group => group + group.Add("Site.css") + .Add("telerik.common.css") + .Add("telerik.vista.css") + .Compressed(true) + ) %> - + - Defines the name of the JavaScript function that will handle the the OnLoad client-side event. + Creates a - The name of the JavaScript function that will handle the event. - <%= Html.Telerik().Window() - .Name("Window") - .ClientEvents(events => events.OnLoad("onLoad")) + <%= Html.Telerik().ScriptRegistrar() %> - + - Defines the inline handler of the OnOpen client-side event + Creates a - The action defining the inline handler. - <% Html.Telerik().Window() - .Name("Window") - .ClientEvents(events => events.OnOpen(() => - { - %> - function(e) { - //event handling code - } - <% - })) - .Render(); + <%= Html.Telerik().Menu() + .Name("Menu") + .Items(items => { /* add items here */ }); %> - + - Defines the name of the JavaScript function that will handle the the OnOpen client-side event. + Creates a - The name of the JavaScript function that will handle the event. - <%= Html.Telerik().Window() - .Name("Window") - .ClientEvents(events => events.OnOpen("onOpen")) + <%= Html.Telerik().Editor() + .Name("Editor"); %> - + - Defines the inline handler of the OnClose client-side event + Creates a new bound to the specified data item type. - The action defining the inline handler. + The type of the data item - <% Html.Telerik().Window() - .Name("Window") - .ClientEvents(events => events.OnClose(() => - { - %> - function(e) { - //event handling code - } - <% - })) - .Render(); + <%= Html.Telerik().Grid<Order>() + .Name("Grid") + .BindTo(Model) %> + + Do not forget to bind the grid using the method when using this overload. + - + - Defines the name of the JavaScript function that will handle the the OnClose client-side event. + Creates a new bound to the specified data source. - The name of the JavaScript function that will handle the event. + The type of the data item + The data source. - <%= Html.Telerik().Window() - .Name("Window") - .ClientEvents(events => events.OnClose("onClose")) + <%= Html.Telerik().Grid(Model) + .Name("Grid") %> - + - Defines the inline handler of the OnMove client-side event + Creates a new bound to a DataTable. - The action defining the inline handler. - - - <% Html.Telerik().Window() - .Name("Window") - .ClientEvents(events => events.OnMove(() => - { - %> - function(e) { - //event handling code - } - <% - })) - .Render(); - %> - - + DataTable from which the grid instance will be bound - + - Defines the name of the JavaScript function that will handle the the OnMove client-side event. + Creates a new bound to a DataView. - The name of the JavaScript function that will handle the event. - - - <%= Html.Telerik().Window() - .Name("Window") - .ClientEvents(events => events.OnMove("onMove")) - %> - - + DataView from which the grid instance will be bound - + - Defines the inline handler of the OnResize client-side event + Creates a new bound an item in ViewData. - The action defining the inline handler. + Type of the data item + The data source view data key. - <% Html.Telerik().Window() - .Name("Window") - .ClientEvents(events => events.OnResize(() => - { - %> - function(e) { - //event handling code - } - <% - })) - .Render(); + <%= Html.Telerik().Grid<Order>("orders") + .Name("Grid") %> - + - Defines the name of the JavaScript function that will handle the the OnResize client-side event. + Creates a new . - The name of the JavaScript function that will handle the event. - <%= Html.Telerik().Window() - .Name("Window") - .ClientEvents(events => events.OnResize("onResize")) + <%= Html.Telerik().TabStrip() + .Name("TabStrip") + .Items(items => + { + items.Add().Text("First"); + items.Add().Text("Second"); + }) %> - + - Defines the inline handler of the OnRefresh client-side event + Creates a new . - The action defining the inline handler. - <% Html.Telerik().Window() - .Name("Window") - .ClientEvents(events => events.OnRefresh(() => - { - %> - function(e) { - //event handling code - } - <% - })) - .Render(); + <%= Html.Telerik().DateTimePicker() + .Name("DateTimePicker") %> - + - Defines the name of the JavaScript function that will handle the the OnRefresh client-side event. + Creates a new . - The name of the JavaScript function that will handle the event. - <%= Html.Telerik().Window() - .Name("Window") - .ClientEvents(events => events.OnRefresh("onRefresh")) + <%= Html.Telerik().DatePicker() + .Name("DatePicker") %> - + - Defines the inline handler of the OnError client-side event + Creates a new . - The action defining the inline handler. - <% Html.Telerik().Window() - .Name("Window") - .ClientEvents(events => events.OnError(() => - { - %> - function(e) { - //event handling code - } - <% - })) - .Render(); + <%= Html.Telerik().TimePicker() + .Name("TimePicker") %> - + - Defines the name of the JavaScript function that will handle the the OnError client-side event. + Creates a new . - The name of the JavaScript function that will handle the event. - <%= Html.Telerik().Window() - .Name("Window") - .ClientEvents(events => events.OnError("onError")) + <%= Html.Telerik().Calendar() + .Name("Calendar") %> - + - Sets path to the icon. + Creates a new . - Path to the icon. - <%= Html.Telerik().Window() - .Name("Window") - .Icon(Url.Content("~/Content/Icons/WindowIcon.png")) + <%= Html.Telerik().PanelBar() + .Name("PanelBar") + .Items(items => + { + items.Add().Text("First"); + items.Add().Text("Second"); + }) %> - + - Sets path and alternative text to the icon. + Creates a - Path to the icon. - Alternative text to the icon. - <%= Html.Telerik().Window() - .Name("Window") - .Icon(Url.Content("~/Content/Icons/WindowIcon.png"), "icon") + <%= Html.Telerik().TreeView() + .Name("TreeView") + .Items(items => { /* add items here */ }); %> - - - Sets title, which appears in the header of the window. - - - + - Sets the HTML content which the window should display. + Creates a new . - The action which renders the content. - <% Html.Telerik().Window() - .Name("Window") - .Content(() => - { - %> - <strong> First Item Content</strong> - <% - }) + <%= Html.Telerik().NumericTextBox() + .Name("NumericTextBox") %> + Returns . - + + - Sets the HTML content which the window should display + Creates a new . - The Razor inline template - @(Html.Telerik().Window() - .Name("Window") - .Content(@<strong> Hello World!!!</strong>)) - + <%= Html.Telerik().CurrencyTextBox() + .Name("CurrencyTextBox") + %> + - - + - Sets the HTML content which the item should display as a string. + Creates a new . - The action which renders the content. + - <%= Html.Telerik().Window() - .Name("Window") - .Content("<strong> First Item Content</strong>") + <%= Html.Telerik().PercentTextBox() + .Name("PercentTextBox") %> - + + - + - Sets the HTML attributes of the content element of the item. + Creates a new . - The attributes. - <%= Html.Telerik().Window() - .Name("Window") - .Content(() => { %> <strong>First Item Content</strong> <% }) - .ContentHtmlAttributes(new {@class="first-item-content"}) + <%= Html.Telerik().IntegerTextBox() + .Name("IntegerTextBox") %> - + - + - Sets the Url, which will be requested to return the content. + Creates a new . - The action name. - The controller name. <%= Html.Telerik().Window() .Name("Window") - .LoadContentFrom("AjaxView_OpenSource", "Window") %> - + - Sets the Url, which will be requested to return the content. + Creates a new . - The action name. - The controller name. - Route values. - <%= Html.Telerik().Window() - .Name("Window") - .LoadContentFrom("AjaxView_OpenSource", "Window", new { id = 10}) + <%= Html.Telerik().DropDownList() + .Name("DropDownList") + .Items(items => + { + items.Add().Text("First Item"); + items.Add().Text("Second Item"); + }) %> - + - Sets the Url, which will be requested to return the content. + Creates a new . - The url. - <%= Html.Telerik().Window() - .Name("Window") - .LoadContentFrom(Url.Action("AjaxView_OpenSource", "Window")) + <%= Html.Telerik().ComboBox() + .Name("ComboBox") + .Items(items => + { + items.Add().Text("First Item"); + items.Add().Text("Second Item"); + }) %> - + - Configures the client-side events. + Creates a new . - The client events action. - <%= Html.Telerik().Window() - .Name("Window") - .ClientEvents(events => - events.OnOpen("onOpen").OnClose("onClose") - ) + <%= Html.Telerik().AutoComplete() + .Name("AutoComplete") + .Items(items => + { + items.Add().Text("First Item"); + items.Add().Text("Second Item"); + }) %> - + - Enables windows resizing. + Creates a new UI component. + + + + + Creates a new . - <%= Html.Telerik().Window() - .Name("Window") - .Resizable() - %> + <%= Html.Telerik().NumericTextBoxFor(m=>m.Property) %> - + - Configures the resizing ability of the window. + Creates a new . - Resizing settings action. - <%= Html.Telerik().Window() - .Name("Window") - .Resizable(settings => - settings.Enabled(true).MaxHeight(500).MaxWidth(500) - ) - %> + <%= Html.Telerik().NumericTextBoxFor(m=>m.NullableProperty) %> - + - Configures the client-side events. + Creates a new . - The client events action. - <%= Html.Telerik().Window() - .Name("Window") - .ClientEvents(events => - events.OnOpen("onOpen").OnClose("onClose") - ) - %> + <%= Html.Telerik().IntegerTextBoxFor(m=>m.Property) %> - - - Sets the width of the window. - - - - - Sets the height of the window. - - - + - Sets whether the window should be rendered visible. + Creates a new . + + + <%= Html.Telerik().IntegerTextBoxFor(m=>m.Property) %> + + - + - Sets whether the window should have scrollbars. + Creates a new . + + + <%= Html.Telerik().CurrencyTextBoxFor(m=>m.Property) %> + + - + - Configures the effects of the window. + Creates a new . - The action which configures the effects. - <%= Html.Telerik().Window() - .Name("Window") - .Effects(fx => - { - fx.Zoom() - .Opacity() - .OpenDuration(AnimationDuration.Fast) - .CloseDuration(AnimationDuration.Fast); - }) + <%= Html.Telerik().CurrencyTextBoxFor(m=>m.Property) %> - + - Sets whether the window should be modal or not. + Creates a new . + + + <%= Html.Telerik().PercentTextBoxFor(m=>m.Property) %> + + - + - Sets whether the window can be moved. + Creates a new . + + + <%= Html.Telerik().PercentTextBoxFor(m=>m.Property) %> + + - + - Defines basic building blocks of Global storage for web assets. + Creates a new . + + + <%= Html.Telerik().DateTimePickerFor(m=>m.Property) %> + + - + - Basic building block to locate the correct virtual path. + Creates a new . + + + <%= Html.Telerik().DateTimePickerFor(m=>m.Property) %> + + - + - Returns the correct virtual path based upon the debug mode and version. + Creates a new . - The virtual path. - The version. - + + + <%= Html.Telerik().DatePickerFor(m=>m.Property) %> + + - + - Stores the specified asset group. + Creates a new . - Type of the content. - The asset group. - + + + <%= Html.Telerik().DatePickerFor(m=>m.Property) %> + + - + - Retrieves the web asset by specified id. + Creates a new . - The id. - + + + <%= Html.Telerik().TimePickerFor(m=>m.Property) %> + + - + - Builder class for fluently configuring the shared group. + Creates a new . + + + <%= Html.Telerik().TimePickerFor(m=>m.Property) %> + + - + - Initializes a new instance of the class. + Creates a new . - The default path. - The assets. + + + <%= Html.Telerik().TimePickerFor(m=>m.Property) %> + + - + - Adds the group. + Creates a new . - The name. - The configure action. - + + + <%= Html.Telerik().TimePickerFor(m=>m.Property) %> + + - + - Gets the group. + Creates a new . - The name. - The configure action. - + + + <%= Html.Telerik().DropDownListFor(m=>m.Property) %> + + - + - + Creates a new . + + + <%= Html.Telerik().ComboBoxFor(m=>m.Property) %> + + - + - Executes the provided delegate that is used to configure stylesheets. + Creates a new . - The configure action. + + + <%= Html.Telerik().AutoCompleteFor(m=>m.Property) %> + + - + - Executes the provided delegate that is used to configure scripts. + Enables zoom animation. - The configure action. - + - The web asset Configuration. + Defines the fluent interface for configuring the . - + - Gets the name of the section. + Initializes a new instance of the class. - The name of the section. + The client events. + The view context. - + - Gets or sets a value indicating whether to use telerik content delivery network. + Defines the inline handler of the OnLoad client-side event - - true if [use telerik content delivery network]; otherwise, false. - + The action defining the inline handler. + + + <% Html.Telerik().Window() + .Name("Window") + .ClientEvents(events => events.OnLoad(() => + { + %> + function(e) { + //event handling code + } + <% + })) + .Render(); + %> + + - + - Gets the style sheets. + Defines the name of the JavaScript function that will handle the the OnLoad client-side event. - The style sheets. + The name of the JavaScript function that will handle the event. + + + <%= Html.Telerik().Window() + .Name("Window") + .ClientEvents(events => events.OnLoad("onLoad")) + %> + + - + - Gets the scripts. + Defines the inline handler of the OnOpen client-side event - The scripts. - - - + The action defining the inline handler. + + + <% Html.Telerik().Window() + .Name("Window") + .ClientEvents(events => events.OnOpen(() => + { + %> + function(e) { + //event handling code + } + <% + })) + .Render(); + %> + + + + + + Defines the name of the JavaScript function that will handle the the OnOpen client-side event. + + The name of the JavaScript function that will handle the event. + + + <%= Html.Telerik().Window() + .Name("Window") + .ClientEvents(events => events.OnOpen("onOpen")) + %> + + + + + + Defines the inline handler of the OnActivate client-side event + + The action defining the inline handler. + + + <% Html.Telerik().Window() + .Name("Window") + .ClientEvents(events => events.OnActivate(() => + { + %> + function(e) { + //event handling code + } + <% + })) + .Render(); + %> + + + + + + Defines the name of the JavaScript function that will handle the the OnActivate client-side event. + + The name of the JavaScript function that will handle the event. + + + <%= Html.Telerik().Window() + .Name("Window") + .ClientEvents(events => events.OnActivate("onActivate")) + %> + + + + + + Defines the inline handler of the OnClose client-side event + + The action defining the inline handler. + + + <% Html.Telerik().Window() + .Name("Window") + .ClientEvents(events => events.OnClose(() => + { + %> + function(e) { + //event handling code + } + <% + })) + .Render(); + %> + + + + + + Defines the name of the JavaScript function that will handle the the OnClose client-side event. + + The name of the JavaScript function that will handle the event. + + + <%= Html.Telerik().Window() + .Name("Window") + .ClientEvents(events => events.OnClose("onClose")) + %> + + + + + + Defines the inline handler of the OnMove client-side event + + The action defining the inline handler. + + + <% Html.Telerik().Window() + .Name("Window") + .ClientEvents(events => events.OnMove(() => + { + %> + function(e) { + //event handling code + } + <% + })) + .Render(); + %> + + + + + + Defines the name of the JavaScript function that will handle the the OnMove client-side event. + + The name of the JavaScript function that will handle the event. + + + <%= Html.Telerik().Window() + .Name("Window") + .ClientEvents(events => events.OnMove("onMove")) + %> + + + + + + Defines the inline handler of the OnResize client-side event + + The action defining the inline handler. + + + <% Html.Telerik().Window() + .Name("Window") + .ClientEvents(events => events.OnResize(() => + { + %> + function(e) { + //event handling code + } + <% + })) + .Render(); + %> + + + + + + Defines the name of the JavaScript function that will handle the the OnResize client-side event. + + The name of the JavaScript function that will handle the event. + + + <%= Html.Telerik().Window() + .Name("Window") + .ClientEvents(events => events.OnResize("onResize")) + %> + + + + + + Defines the inline handler of the OnRefresh client-side event + + The action defining the inline handler. + + + <% Html.Telerik().Window() + .Name("Window") + .ClientEvents(events => events.OnRefresh(() => + { + %> + function(e) { + //event handling code + } + <% + })) + .Render(); + %> + + + + + + Defines the name of the JavaScript function that will handle the the OnRefresh client-side event. + + The name of the JavaScript function that will handle the event. + + + <%= Html.Telerik().Window() + .Name("Window") + .ClientEvents(events => events.OnRefresh("onRefresh")) + %> + + + + + + Defines the inline handler of the OnError client-side event + + The action defining the inline handler. + + + <% Html.Telerik().Window() + .Name("Window") + .ClientEvents(events => events.OnError(() => + { + %> + function(e) { + //event handling code + } + <% + })) + .Render(); + %> + + + + + + Defines the name of the JavaScript function that will handle the the OnError client-side event. + + The name of the JavaScript function that will handle the event. + + + <%= Html.Telerik().Window() + .Name("Window") + .ClientEvents(events => events.OnError("onError")) + %> + + + + + + Sets path to the icon. + + Path to the icon. + + + <%= Html.Telerik().Window() + .Name("Window") + .Icon(Url.Content("~/Content/Icons/WindowIcon.png")) + %> + + + + + + Sets path and alternative text to the icon. + + Path to the icon. + Alternative text to the icon. + + + <%= Html.Telerik().Window() + .Name("Window") + .Icon(Url.Content("~/Content/Icons/WindowIcon.png"), "icon") + %> + + + + + + Sets title, which appears in the header of the window. + + + + + Sets the HTML content which the window should display. + + The action which renders the content. + + + <% Html.Telerik().Window() + .Name("Window") + .Content(() => + { + %> + <strong> First Item Content</strong> + <% + }) + %> + + + + + + Sets the HTML content which the window should display + + The Razor inline template + + + @(Html.Telerik().Window() + .Name("Window") + .Content(@<strong> Hello World!!!</strong>)) + + + + + + + Sets the HTML content which the item should display as a string. + + The action which renders the content. + + <%= Html.Telerik().Window() + .Name("Window") + .Content("<strong> First Item Content</strong>") + %> + + + + + Sets the HTML attributes of the content element of the item. + + The attributes. + + + <%= Html.Telerik().Window() + .Name("Window") + .Content(() => { %> <strong>First Item Content</strong> <% }) + .ContentHtmlAttributes(new {@class="first-item-content"}) + %> + + + + + + Sets the Url, which will be requested to return the content. + + The route values of the Action method. + + + <%= Html.Telerik().Window() + .Name("Window") + .LoadContentFrom(MVC.Home.Index().GetRouteValueDictionary()); + %> + + + + + + Sets the Url, which will be requested to return the content. + + The action name. + The controller name. + + + <%= Html.Telerik().Window() + .Name("Window") + .LoadContentFrom("AjaxView_OpenSource", "Window") + %> + + + + + + Sets the Url, which will be requested to return the content. + + The action name. + The controller name. + Route values. + + + <%= Html.Telerik().Window() + .Name("Window") + .LoadContentFrom("AjaxView_OpenSource", "Window", new { id = 10}) + %> + + + + + + Sets the Url, which will be requested to return the content. + + The url. + + + <%= Html.Telerik().Window() + .Name("Window") + .LoadContentFrom(Url.Action("AjaxView_OpenSource", "Window")) + %> + + + + + + Configures the client-side events. + + The client events action. + + + <%= Html.Telerik().Window() + .Name("Window") + .ClientEvents(events => + events.OnOpen("onOpen").OnClose("onClose") + ) + %> + + + + + + Enables windows resizing. + + + + <%= Html.Telerik().Window() + .Name("Window") + .Resizable() + %> + + + + + + Configures the resizing ability of the window. + + Resizing settings action. + + + <%= Html.Telerik().Window() + .Name("Window") + .Resizable(settings => + settings.Enabled(true).MaxHeight(500).MaxWidth(500) + ) + %> + + + + + + Configures the client-side events. + + The client events action. + + + <%= Html.Telerik().Window() + .Name("Window") + .ClientEvents(events => + events.OnOpen("onOpen").OnClose("onClose") + ) + %> + + + + + + Sets the width of the window. + + + + + Sets the height of the window. + + + + + Sets whether the window should be rendered visible. + + + + + Sets whether the window should have scrollbars. + + + + + Configures the effects of the window. + + The action which configures the effects. + + + <%= Html.Telerik().Window() + .Name("Window") + .Effects(fx => + { + fx.Zoom() + .Opacity() + .OpenDuration(AnimationDuration.Fast) + .CloseDuration(AnimationDuration.Fast); + }) + + + + + + Sets whether the window should be modal or not. + + + + + Sets whether the window can be moved. + + + + + Builder class for fluently configuring the shared group. + + + + + Initializes a new instance of the class. + + The default path. + The assets. + + + + Adds the group. + + The name. + The configure action. + + + + + Gets the group. + + The name. + The configure action. + + + + + + + + + + Executes the provided delegate that is used to configure stylesheets. + + The configure action. + + + + Executes the provided delegate that is used to configure scripts. + + The configure action. + + + + The web asset Configuration. + + + + + Gets the name of the section. + + The name of the section. + + + + Gets or sets a value indicating whether to use telerik content delivery network. + + + true if [use telerik content delivery network]; otherwise, false. + + + + + Gets the style sheets. + + The style sheets. + + + + Gets the scripts. + + The scripts. + + + Web asset item configuration element. - + Gets or sets the source. The source. - + Web asset item configuration collection. - + Adds the specified element. The element. - + When overridden in a derived class, creates a new . @@ -11303,7 +12740,7 @@ A new . - + Gets the element key for a specified configuration element when overridden in a derived class. @@ -11312,30 +12749,30 @@ An that acts as the key for the specified . - + - Gets the with the specified source. + Gets the with the specified source. - + Web asset group configuration element. - + Gets or sets the name. The name. - + Gets or sets the default path. The default path. - + Gets or sets a value indicating whether to use telerik content delivery network. @@ -11343,60 +12780,60 @@ true if [use telerik content delivery network]; otherwise, false. - + Gets or sets the content delivery network URL. The content delivery network URL. - + - Gets or sets a value indicating whether this is enabled. + Gets or sets a value indicating whether this is enabled. true if enabled; otherwise, false. - + Gets or sets the version. The version. - + - Gets or sets a value indicating whether this is compress. + Gets or sets a value indicating whether this is compress. true if compress; otherwise, false. - + Gets or sets the cache duration in days. The cache duration in days. - + - Gets or sets a value indicating whether this is combined. + Gets or sets a value indicating whether this is combined. true if combined; otherwise, false. - + Gets the items. The items. - + Web asset group configuration collection - + Adds the specified element. The element. - + When overridden in a derived class, creates a new . @@ -11404,7 +12841,7 @@ A new . - + Gets the element key for a specified configuration element when overridden in a derived class. @@ -11413,63 +12850,18 @@ An that acts as the key for the specified . - + - Gets the with the specified name. + Gets the with the specified name. - - - Reprenets an web asset. - - - - - Initializes a new instance of the class. - - Type of the content. - The version. - if set to true [compress]. - The cache duration in days. - The content. - - - - Gets the type of the content. - - The type of the content. - - - - Gets the version. - - The version. - - - - Gets a value indicating whether this is compressed. - - true if compress; otherwise, false. - - - - Gets the cache duration in days. - - The cache duration in days. - - - - Gets the content. - - The content. - The HttpHandler to compress, cache and combine web assets. - + Initializes a new instance of the class. @@ -11500,58 +12892,6 @@ The name of the id parameter. - - - Default web asset locator. - - - - - Returns the correct virtual path based upon the debug mode and version. - - The virtual path. - The version. - - - - - The default web asset registry. - - - - - Initializes a new instance of the class. - - if set to true [is in debug mode]. - The cache manager. - The asset locator. - The URL resolver. - The path resolver. - The virtual path provider. - - - - Stores the specified asset group. - - Type of the content. - The asset group. - - - - - Retrieves the web asset by specified id. - - The id. - - - - - Returns the correct virtual path based upon the debug mode and version. - - The virtual path. - The version. - - Contains default asset settings. @@ -11636,41 +12976,6 @@ The context. The duration. - - - Defines members that a class must implement in order to access file system. - - - - - Determines whether the specified directory exists. - - The path. - - - - - Determines whether the specified file exists. - - The path. - - - - - Gets the files in the specified locations. - - The path. - The search pattern. - if set to true [recursive]. - - - - - Reads the content of the specified file. - - The path. - - Defines the read operaations of configuration. @@ -11684,73 +12989,6 @@ Name of the section. - - - Defines members that a class must implement in order to access System.Web.HttpRuntime.Cache object. - - - - - Gets the item. - - The key. - - - - - Inserts the specified key. - - The key. - The value. - The on remove callback. - The file dependencies. - - - - Contains extension methods of T[]. - - - - - Determines whether the specified array is empty or null. - - - The instance. - - true if [is null or empty] [the specified instance]; otherwise, false. - - - - - Determines whether the specified array is empty. - - - The instance. - - true if the specified instance is empty; otherwise, false. - - - - - Encapsulates the System.Web.HttpRuntime.Cache object that contains methods for accessing System.Web.HttpRuntime.Cache object. - - - - - Retrieves the specified item from the System.Web.HttpRuntime.Cache object. - - The object to be retrives from the cache. - - - - - Inserts an object into the System.Web.Caching.Cache object with dependencies and a delegate you can use to notify your application when the inserted item is removed from the Cache. - - The object to be inserted in the cache. - The file or cache key dependencies for the item. When any dependency changes, the object becomes invalid and is removed from the cache. If there are no dependencies, this parameter contains null. - A delegate that, if provided, will be called when an object is removed from the cache. You can use this to notify applications when their objects are deleted from the cache. - List of files that the cache item depends upon, if any of the file is changed the cache item will become invalid. - Defines the factory to create . @@ -11782,39 +13020,6 @@ The value. - - - Contains extension methods of ICollection<T>. - - - - - Determines whether the specified collection instance is null or empty. - - - The instance to check. - - true if the specified instance is null or empty; otherwise, false. - - - - - Determines whether the specified collection is empty. - - - The instance. - - true if the specified instance is empty; otherwise, false. - - - - - Adds the specified elements to the end of the System.Collections.Generic.ICollection<T>. - - - The instance to add. - The collection whose elements should be added to the end of the ICollection<T>. The collection itself cannot be null, but it can contain elements that are null, if type T is a reference type. - Encapsulates the ConfigurationManager object that contains methods for accessing System.Web.HttpRuntime.Cache object. @@ -11892,45 +13097,10 @@ - Merges the specified instance. - - The instance. - The values. - - - - Provides properties and methods for working with drives, files, and directories. - - - - - Determines whether the given path refers to an existing directory on disk. - - The path to test. - true if path refers to an existing directory; otherwise, false. - - - - Determines whether the specified file exists. - - The file to check. - true if the caller has the required permissions and path contains the name of an existing file; otherwise, false. This method also returns false if path is null, an invalid path, or a zero-length string. If the caller does not have sufficient permissions to read the specified file, no exception is thrown and the method returns false regardless of the existence of path. - - - - Returns the names of files in the specified directory that match the specified search pattern, using a value to determine whether to search subdirectories. - - The directory to search. - The search string to match against the names of files in path. The parameter cannot end in two periods ("..") or contain two periods ("..") followed by System.IO.Path.DirectorySeparatorChar or System.IO.Path.AltDirectorySeparatorChar, nor can it contain any of the characters in System.IO.Path.InvalidPathChars. - if set to true the search operation should include all subdirectories or only the current directory. - A String array containing the names of files in the specified directory that match the specified search pattern. File names include the full path. - - - - Opens a text file, reads all lines of the file, and then closes the file. + Merges the specified instance. - The file to open for reading. - A string containing all lines of the file. + The instance. + The values. @@ -11956,18 +13126,6 @@ true if Linux/Unix; otherwise, false. - - - Class used to cache the http response. - - - - - Set the caching policy. - - The context. - The duration. - Encapsulates the HTTP intrinsic object that compress the response @@ -12113,15 +13271,6 @@ true if the value of the comparing parameter is the same as this string; otherwise, false. - - - Determines whether this instance is null or empty string. - - The string to check its value. - - true if the value is null or empty string; otherwise, false. - - Compresses the specified instance. @@ -12231,6 +13380,11 @@ Looks up a localized string similar to The DataKeys collection is empty. Please specify a data key.. + + + Looks up a localized string similar to DataTable InLine editing and custom EditorTemplate per column is not supported. + + Looks up a localized string similar to Date should be bigger than MinDate and less than MaxDate.. @@ -12286,6 +13440,11 @@ Looks up a localized string similar to Local group with name "{0}" already exists.. + + + Looks up a localized string similar to The key with the following name "{0}" was not found. Please update all localization files.. + + Looks up a localized string similar to Bound columns require a field or property access expression.. @@ -12321,1048 +13480,580 @@ Looks up a localized string similar to "None" is only used for internal purpose.. - - - Looks up a localized string similar to Only one ScriptRegistrar is allowed in a single request.. - - - - - Looks up a localized string similar to Only one StyleSheetRegistrar is allowed in a single request.. - - - - - Looks up a localized string similar to Only property and field expressions are supported. - - - - - Looks up a localized string similar to {0} should be bigger than {1} and less then {2}. - - - - - Looks up a localized string similar to You must have SiteMap defined with key "{0}" in ViewData dictionary.. - - - - - Looks up a localized string similar to Source must be a virtual path which should starts with "~/". - - - - - Looks up a localized string similar to Specified file does not exist: "{0}".. - - - - - Looks up a localized string similar to Passed string cannot be parsed to DateTime object.. - - - - - Looks up a localized string similar to The specified method is not an action method.. - - - - - Looks up a localized string similar to You cannot set Url and ContentUrl at the same time.. - - - - - Looks up a localized string similar to Value should be bigger than MinValue and less than MaxValue.. - - - - - Looks up a localized string similar to The Url of the WebService must be set. - - - - - Looks up a localized string similar to You cannot add more than once column when sort mode is set to single column.. - - - - - Looks up a localized string similar to You cannot call render more than once.. - - - - - Looks up a localized string similar to You cannot call Start more than once.. - - - - - Looks up a localized string similar to You cannot configure a shared web asset group.. - - - - - Looks up a localized string similar to You must have to call Start prior calling this method.. - - - - - Defines an individual web asset. - - - - - Marker interface of web asset. - - - - - Initializes a new instance of the class. - - - - - Gets the source. - - The source. - - - - Represents a list of that can be accessed by index. Provides methods to search, sort and manipulate lists. - - - - - Initializes a new instance of the class. - - The default path. - - - - Finds the group with the specified name. - - The name. - - - - - Finds the item with the specified source. - - The source. - - - - - Adds the specified source as . - - The item source. - - - - Adds the specified source as in the specified . - - Name of the group. - The item source. - - - - Inserts the specified source as at the specified index. - - The index. - The item source. - - - - Inserts the specified source as at the specified index in the specified . - - The index. - Name of the group. - The item source. - - - - Inserts an element into the at the specified index. - - The zero-based index at which should be inserted. - The object to insert. The value can be null for reference types. - - is less than zero. - -or- - is greater than . - - - - - Replaces the element at the specified index. - - The zero-based index of the element to replace. - The new value for the element at the specified index. The value can be null for reference types. - - is less than zero. - -or- - is greater than . - - - - - Gets or sets the default path. - - The default path. - - - - Gets the asset groups. - - The asset groups. - - - - Gets the asset items. - - The asset items. - - - - Defines the fluent interface for configuring web assets. - - - - - Initializes a new instance of the class. - - Type of the asset. - The assets. - - - - Performs an implicit conversion from to . - - The builder. - The result of the conversion. - - - - Returns the internal collection. - - - - - - Adds a new web asset - - The source. - - - <%= Html.Telerik().ScriptRegistrar() - .Scripts(scripts => scripts.Add("script1.js")) - %> - - - - - - Adds a new web asset group. - - The name. - The configure action. - - - <%= Html.Telerik().ScriptRegistrar() - .Scripts(scripts => scripts.AddGroup("Group1", group => - { - group.Add("script1.js"); - } - )) - %> - - - - - - Adds the specified shared group. - - The name. - - - <%= Html.Telerik().ScriptRegistrar() - .Scripts(scripts => scripts.AddShareGroup("SharedGroup1")) - %> - - - - + - Executes the provided delegate that is used to configure the group fluently. + Looks up a localized string similar to Only one ScriptRegistrar is allowed in a single request.. - The name. - The configure action. - + - Defines the group. + Looks up a localized string similar to Only one StyleSheetRegistrar is allowed in a single request.. - + - Initializes a new instance of the class. + Looks up a localized string similar to Only property and field expressions are supported. - The name. - if set to true [is shared]. - + - Gets or sets the name. + Looks up a localized string similar to {0} should be bigger than {1} and less then {2}. - The name. - + - Gets or sets a value indicating whether this instance is shared. + Looks up a localized string similar to The "{0}" class is no longer supported. To enable RTL support you must include telerik.rtl.css and apply the "t-rtl" class to a parent HTML element or the <body>.. - true if this instance is shared; otherwise, false. - + - Gets or sets the default path. + Looks up a localized string similar to You must have SiteMap defined with key "{0}" in ViewData dictionary.. - The default path. - + - Gets or sets a value indicating whether Telerik content delivery network would be used. + Looks up a localized string similar to Source must be a virtual path which should starts with "~/". - - true if [use Telerik content delivery network]; otherwise, false. - - + - Gets or sets the content delivery network URL. + Looks up a localized string similar to Specified file does not exist: "{0}".. - The content delivery network URL. - + - Gets or sets a value indicating whether this is disabled. + Looks up a localized string similar to Passed string cannot be parsed to DateTime object.. - true if disabled; otherwise, false. - + - Gets or sets the version. + Looks up a localized string similar to Passed string cannot be parsed to TimeSpan object.. - The version. - + - Gets or sets a value indicating whether this is compress. + Looks up a localized string similar to The specified method is not an action method.. - true if compress; otherwise, false. - + - Gets or sets the cache duration in days. + Looks up a localized string similar to Time should be bigger than MinTime and less than MaxTime.. - The cache duration in days. - + - Gets or sets a value indicating whether this is combined. + Looks up a localized string similar to You cannot set Url and ContentUrl at the same time.. - true if combined; otherwise, false. - + - Gets the items. + Looks up a localized string similar to The value '{0}' is invalid.. - The items. - + - Class used to build initialization script of jQuery plugin. + Looks up a localized string similar to Value should be bigger than MinValue and less than MaxValue.. - + - Initializes a new instance of the class. + Looks up a localized string similar to The Url of the WebService must be set. - The id. - The type. - The text writer. - + - Starts writing this instance. + Looks up a localized string similar to You cannot add more than once column when sort mode is set to single column.. - - + - Appends the specified key value pair to the end of this instance. + Looks up a localized string similar to You cannot use non generic BindTo overload without EnableCustomBinding set to true. - The key value pair. - - + - Appends the specified name and value to the end of this instance. + Looks up a localized string similar to You cannot call render more than once.. - The name. - The value. - - + - Appends the specified name and nullable value to the end of this instance. + Looks up a localized string similar to You cannot call Start more than once.. - The name. - The value. - - + - Appends the specified name and value to the end of this instance. + Looks up a localized string similar to You cannot configure a shared web asset group.. - The name. - The value. - - + - Appends the specified name and value to the end of this instance. + Looks up a localized string similar to You must have to call Start prior calling this method.. - The name. - The value. - The default value. - - + - Appends the specified name and value to the end of this instance. + Initializes a new instance of the class. - The name. - The value. - + The default path. - + - Appends the specified name and value to the end of this instance. + Finds the group with the specified name. The name. - The value. - + - Appends the specified name and value to the end of this instance. + Finds the item with the specified source. - The name. - The value. + The source. - + - Appends the specified name and value to the end of this instance. + Adds the specified source as . - The name. - The value. - + The item source. - + - Appends the specified name and value to the end of this instance. + Adds the specified source as in the specified . - The name. - The value. - + Name of the group. + The item source. - + - Appends the specified name and value to the end of this instance. + Inserts the specified source as at the specified index. - The name. - if set to true [value]. - + The index. + The item source. - + - Appends the specified name and value to the end of this instance. + Inserts the specified source as at the specified index in the specified . - The name. - if set to true [value]. - if set to true [default value]. - + The index. + Name of the group. + The item source. - + - Appends the specified name and only the date of the passed . + Inserts an element into the at the specified index. - The name. - The value. - + The zero-based index at which should be inserted. + The object to insert. The value can be null for reference types. + + is less than zero. + -or- + is greater than . + - + - Appends the specified name and only the date of the passed . + Replaces the element at the specified index. - The name. - The value. - + The zero-based index of the element to replace. + The new value for the element at the specified index. The value can be null for reference types. + + is less than zero. + -or- + is greater than . + - - + - Appends the specified name and value to the end of this instance. + Gets or sets the default path. - The name. - The value. - + The default path. - + - Appends the specified name and value to the end of this instance. + Gets the asset groups. - The name. - The value. - + The asset groups. - + - Appends the specified name and value to the end of this instance. + Gets the asset items. - The name. - The action. - + The asset items. - + - Appends the specified name and value to the end of this instance. + Defines the fluent interface for configuring web assets. - The name. - The values. - - + - Appends the specified name and value to the end of this instance. + Initializes a new instance of the class. - The name. - The values. - + Type of the asset. + The assets. - + - Appends the specified name and value to the end of this instance. + Performs an implicit conversion from to . - The type of the enum. - The name. - The value. - + The builder. + The result of the conversion. - + - Appends the specified name and value to the end of this instance. + Returns the internal collection. - The type of the enum. - The name. - The value. - The default value. - - + - Completes this instance. + Adds a new web asset + The source. + + + <%= Html.Telerik().ScriptRegistrar() + .Scripts(scripts => scripts.Add("script1.js")) + %> + + - + - Defines members that a class must implement in order to provide helper methods for resolving relative path. + Adds a new web asset group. + The name. + The configure action. + + + <%= Html.Telerik().ScriptRegistrar() + .Scripts(scripts => scripts.AddGroup("Group1", group => + { + group.Add("script1.js"); + } + )) + %> + + - + - Returns the relative path for the specified virtual path. + Adds the specified shared group. - The URL. - + The name. + + + <%= Html.Telerik().ScriptRegistrar() + .Scripts(scripts => scripts.AddShareGroup("SharedGroup1")) + %> + + - + - HTMLHelper extension for providing access to . + Executes the provided delegate that is used to configure the group fluently. + The name. + The configure action. - + - Gets the Telerik View Component Factory + Initializes a new instance of the class. - The helper. - The Factory + The name. + if set to true [is shared]. - + - Gets the Telerik View Component Factory + Gets or sets the name. - The helper. - The Factory + The name. - + - Container of scriptable component. + Gets or sets a value indicating whether this instance is shared. + true if this instance is shared; otherwise, false. - + - Registers the specified component. + Gets or sets the default path. - The component. + The default path. - + - Provides the factory methods for creating Telerik View Components. + Gets or sets a value indicating whether Telerik content delivery network would be used. + + true if [use Telerik content delivery network]; otherwise, false. + - + - Creates a + Gets or sets the content delivery network URL. - - - <%= Html.Telerik().StyleSheetRegistrar() - .DefaultGroup(group => group - group.Add("Site.css") - .Add("telerik.common.css") - .Add("telerik.vista.css") - .Compressed(true) - ) - %> - - + The content delivery network URL. - + - Creates a + Gets or sets a value indicating whether this is disabled. - - - <%= Html.Telerik().ScriptRegistrar() - %> - - + true if disabled; otherwise, false. - + - Creates a + Gets or sets the version. - - - <%= Html.Telerik().Menu() - .Name("Menu") - .Items(items => { /* add items here */ }); - %> - - + The version. - + - Creates a + Gets or sets a value indicating whether this is compress. - - - <%= Html.Telerik().Editor() - .Name("Editor"); - %> - - + true if compress; otherwise, false. - + - Creates a new bound to the specified data item type. + Gets or sets the cache duration in days. - - The type of the data item - - <%= Html.Telerik().Grid<Order>() - .Name("Grid") - .BindTo(Model) - %> - - - - Do not forget to bind the grid using the method when using this overload. - + The cache duration in days. - + - Creates a new bound to the specified data source. + Gets or sets a value indicating whether this is combined. - The type of the data item - The data source. - - - <%= Html.Telerik().Grid(Model) - .Name("Grid") - %> - - + true if combined; otherwise, false. - + - Creates a new bound an item in ViewData. + Gets the items. - Type of the data item - The data source view data key. - - - <%= Html.Telerik().Grid<Order>("orders") - .Name("Grid") - %> - - + The items. - + - Creates a new . + Class used to build initialization script of jQuery plugin. - - - <%= Html.Telerik().TabStrip() - .Name("TabStrip") - .Items(items => - { - items.Add().Text("First"); - items.Add().Text("Second"); - }) - %> - - - + - Creates a new . + Initializes a new instance of the class. - - - <%= Html.Telerik().DatePicker() - .Name("DatePicker") - %> - - + The id. + The type. + The text writer. - + - Creates a new . + Starts writing this instance. - - - <%= Html.Telerik().Calendar() - .Name("Calendar") - %> - - + - + - Creates a new . + Appends the specified key value pair to the end of this instance. - - - <%= Html.Telerik().PanelBar() - .Name("PanelBar") - .Items(items => - { - items.Add().Text("First"); - items.Add().Text("Second"); - }) - %> - - + The key value pair. + - + - Creates a + Appends the specified name and value to the end of this instance. - - - <%= Html.Telerik().TreeView() - .Name("TreeView") - .Items(items => { /* add items here */ }); - %> - - + The name. + The value. + - + - Creates a new . + Appends the specified name and nullable value to the end of this instance. - - - <%= Html.Telerik().NumericTextBox() - .Name("NumericTextBox") - %> - - - Returns . + The name. + The value. + - - + - Creates a new . + Appends the specified name and value to the end of this instance. - - - <%= Html.Telerik().CurrencyTextBox() - .Name("CurrencyTextBox") - %> - - + The name. + The value. + - + - Creates a new . + Appends the specified name and value to the end of this instance. - - - <%= Html.Telerik().PercentTextBox() - .Name("PercentTextBox") - %> - - + The name. + The value. + The default value. + - + - Creates a new . + Appends the specified name and value to the end of this instance. - - - <%= Html.Telerik().IntegerTextBox() - .Name("IntegerTextBox") - %> - - + The name. + The value. + - + - Creates a new . + Appends the specified name and value to the end of this instance. - - - <%= Html.Telerik().Window() - .Name("Window") - %> - - + The name. + The value. + - + - Creates a new . + Appends the specified name and value to the end of this instance. - - - <%= Html.Telerik().DropDownList() - .Name("DropDownList") - .Items(items => - { - items.Add().Text("First Item"); - items.Add().Text("Second Item"); - }) - %> - - + The name. + The value. + - + - Creates a new . + Appends the specified name and value to the end of this instance. - - - <%= Html.Telerik().ComboBox() - .Name("ComboBox") - .Items(items => - { - items.Add().Text("First Item"); - items.Add().Text("Second Item"); - }) - %> - - + The name. + The value. + - + - Creates a new . + Appends the specified name and value to the end of this instance. - - - <%= Html.Telerik().AutoComplete() - .Name("AutoComplete") - .Items(items => - { - items.Add().Text("First Item"); - items.Add().Text("Second Item"); - }) - %> - - + The name. + The value. + - + - Creates a new UI component. + Appends the specified name and value to the end of this instance. + The name. + if set to true [value]. + - + - Creates a new . + Appends the specified name and value to the end of this instance. - - - <%= Html.Telerik().NumericTextBoxFor(m=>m.Property) %> - - + The name. + if set to true [value]. + if set to true [default value]. + - + - Creates a new . + Appends the specified name and only the date of the passed . - - - <%= Html.Telerik().NumericTextBoxFor(m=>m.NullableProperty) %> - - + The name. + The value. + - + - Creates a new . + Appends the specified name and only the date of the passed . - - - <%= Html.Telerik().IntegerTextBoxFor(m=>m.Property) %> - - + The name. + The value. + - + + - Creates a new . + Appends the specified name and value to the end of this instance. - - - <%= Html.Telerik().IntegerTextBoxFor(m=>m.Property) %> - - + The name. + The value. + - + - Creates a new . + Appends the specified name and value to the end of this instance. - - - <%= Html.Telerik().CurrencyTextBoxFor(m=>m.Property) %> - - + The name. + The value. + - + - Creates a new . + Appends the specified name and value to the end of this instance. - - - <%= Html.Telerik().CurrencyTextBoxFor(m=>m.Property) %> - - + The name. + The action. + - + - Creates a new . + Appends the specified name and value to the end of this instance. - - - <%= Html.Telerik().PercentTextBoxFor(m=>m.Property) %> - - + The type of the enum. + The name. + The value. + - + - Creates a new . + Appends the specified name and value to the end of this instance. - - - <%= Html.Telerik().PercentTextBoxFor(m=>m.Property) %> - - + The type of the enum. + The name. + The value. + The default value. + - + + - Creates a new . + Completes this instance. - - - <%= Html.Telerik().DatePickerFor(m=>m.Property) %> - - - + - Creates a new . + Defines members that a class must implement in order to provide helper methods for resolving relative path. - - - <%= Html.Telerik().DatePickerFor(m=>m.Property) %> - - - + - Creates a new . + Returns the relative path for the specified virtual path. - - - <%= Html.Telerik().DropDownListFor(m=>m.Property) %> - - + The URL. + - + - Creates a new . + HTMLHelper extension for providing access to . - - - <%= Html.Telerik().ComboBoxFor(m=>m.Property) %> - - - + - Creates a new . + Gets the Telerik View Component Factory - - - <%= Html.Telerik().AutoCompleteFor(m=>m.Property) %> - - + The helper. + The Factory - + - The default web asset merger. + Gets the Telerik View Component Factory + The helper. + The Factory - + - Initializes a new instance of the class. + Container of scriptable component. - The asset registry. - The URL resolver. - The URL encoder. - + - Merges the specified assets. + Registers the specified component. - Type of the content. - The asset handler path. - if set to true [is secure]. - if set to true [can compress]. - The assets. - + The component. @@ -13430,7 +14121,7 @@ - + Configures the . @@ -13447,7 +14138,7 @@ - + Executes the provided delegate that is used to register the stylesheet files fluently. @@ -13476,7 +14167,7 @@ Used to ensure that the same instance is used for the same HttpContext. - + Initializes a new instance of the class. @@ -13519,12 +14210,6 @@ The view context. - - - Gets or sets the asset merger. - - The asset merger. - Class used to resolve relative path for virtual path. @@ -13566,61 +14251,38 @@ The on page unload end. - - - Helper class to get currrent and invariant culture. - - - - - Gets the System.Globalization.CultureInfo that represents the current culture used by the Resource Manager to look up culture-specific resources at run time. - - The current. - - - - Gets the System.Globalization.CultureInfo that represents the current UI culture - - The current. - - - - Gets the System.Globalization.CultureInfo that is culture-independent (invariant). - - The invariant. - - + - Defines the fluent interface for configuring the . + Defines the fluent interface for configuring the . - + - Initializes a new instance of the class. + Initializes a new instance of the class. The asset item group. - + - Performs an implicit conversion from to . + Performs an implicit conversion from to . The builder. The result of the conversion. - + Returns the internal group. - + Sets whether Telerik content delivery network would be used. if set to true [value]. - + Sets the content delivery network URL. @@ -13633,7 +14295,7 @@ - + Enables or disables the group @@ -13645,7 +14307,7 @@ - + Sets the version. @@ -13658,7 +14320,7 @@ - + Sets whether the groups will be served as compressed. By default asset groups are not compressed. @@ -13670,7 +14332,7 @@ - + Sets the caches the duration of this group. @@ -13683,7 +14345,7 @@ - + Sets whether the groups items will be served as combined. @@ -13695,16 +14357,16 @@ - + - Sets the defaults path of the containing . + Sets the defaults path of the containing . The path. - + - Adds the specified source as . + Adds the specified source as . The value. @@ -13725,7 +14387,7 @@ Used to ensure that the same instance is used for the same HttpContext. - + Initializes a new instance of the class. @@ -13820,12 +14482,6 @@ The view context. - - - Gets the asset merger. - - The asset merger. - Gets the script wrapper that is used to write the script statements. @@ -13869,7 +14525,7 @@ - + Configures the . @@ -13916,7 +14572,7 @@ - + Executes the provided delegate that is used to register the script files fluently in different groups.