Product Bundles
DevCraft
All Telerik .NET and Kendo UI JavaScript components and AI Tools in one package.
Kendo UI
Bundle of AI Tools plus four JavaScript UI libraries built natively for jQuery, Angular, React and Vue.
Telerik
Build great .NET business apps
Net Web
Cross-Platform
Desktop
Reporting and Documents
Testing & Mocking
Debugging
Build JavaScript UI
Javascript
AI for Developers & IT
Ensure AI program success
AI Coding
Additional Tools
Enhance the developer and designer experience
UI/UX Tools
Free Tools
CMS
Support and Learning
Productivity and Design Tools
New to Telerik UI for ASP.NET AJAX? Download free 30-day trial
This example shows how to apply setting to TextBox controls with RadInputManager dynamically on server-side.
The DatePickerSettings for the TextBox controls placed outside the repeater are applied within the Page's Init event and the settings for the TextBox controls placed within the ItemTemplate of the Repeater are applied within the OnItemCreated event.
<%@ Page Language="vb" CodeFile="DefaultVB.aspx.vb" AutoEventWireup="true" Inherits="Telerik.InputManager.DynamicInputSettings.DefaultVB" %> <%@ Register TagPrefix="telerik" Namespace="Telerik.Web.UI" Assembly="Telerik.Web.UI" %> <!DOCTYPE html> <html xmlns='http://www.w3.org/1999/xhtml'> <head runat="server"> <title>Telerik ASP.NET Example</title> <link rel="stylesheet" type="text/css" href="styles.css" /> </head> <body> <form id="form1" runat="server"> <telerik:RadScriptManager runat="server" ID="RadScriptManager1" /> <telerik:RadSkinManager ID="RadSkinManager1" runat="server" ShowChooser="true" /> <telerik:RadFormDecorator RenderMode="Lightweight" ID="RadFormDecorator1" runat="server" DecorationZoneID="demo-container" DecoratedControls="All" ControlsToSkip="Textbox" /> <div class="demo-containers"> <div class="demo-container" id="demo-container"> <div class="contentContainer"> <div class="datesWrapper"> Start date: <asp:TextBox runat="server" ID="StartDatePicker"></asp:TextBox> End date: <asp:TextBox runat="server" ID="EndDatePicker"></asp:TextBox> </div> <div class="listViewWrapper cf"> <telerik:RadListView runat="server" ID="RadListView1" DataSourceID="SqlDataSource1" OnItemCreated="RadListView1_ItemCreated"> <ItemTemplate> <div class="itemTemplate"> <span class="caption">Product ID:</span><%# Eval("ProductID") %><br /> <span class="caption">Category Name:</span><%# Eval("CategoryName") %><br /> <span class="caption">Product Name:</span><asp:TextBox runat="server" ID="ProductNameTextBox" Text='<%# Eval("ProductName") %>'></asp:TextBox><br /> <span class="caption">Unit Price:</span><asp:TextBox runat="server" ID="UnitPriceTextBox" Text='<%# Eval("UnitPrice") %>'></asp:TextBox> </div> </ItemTemplate> </telerik:RadListView> </div> <asp:SqlDataSource runat="server" ID="SqlDataSource1" ConnectionString='<%$ ConnectionStrings:NorthwindConnectionString %>' SelectCommand="SELECT TOP 4 [ProductID], [ProductName], [UnitPrice], [CategoryName] FROM [Alphabetical list of products]"></asp:SqlDataSource> </div> </div> </div> <telerik:RadInputManager RenderMode="Lightweight" runat="server" ID="RadInputManager1"> <telerik:TextBoxSetting BehaviorID="TextBehavior1"></telerik:TextBoxSetting> <telerik:NumericTextBoxSetting BehaviorID="NumericBehavior1"></telerik:NumericTextBoxSetting> <telerik:DatePickerSetting BehaviorID="DateBehavior1"></telerik:DatePickerSetting> </telerik:RadInputManager> </form> </body> </html>