or
Public Sub New(ByVal cName As String) colname = cName End Sub Public Sub InstantiateIn(ByVal container As System.Web.UI.Control) Implements ITemplate.InstantiateIn textBox = New TextBox() textBox.Width = 27 container.Controls.Add(textBox) AddHandler textBox.DataBinding, AddressOf textValue_DataBinding End Sub Sub textValue_DataBinding(ByVal sender As Object, ByVal e As EventArgs) Dim MyTextBox As TextBox = DirectCast(sender, TextBox) Dim container As GridDataItem = DirectCast(MyTextBox.NamingContainer, GridDataItem) MyTextBox.Text = DirectCast((DirectCast(container.DataItem, DataRowView))(colname), Integer) End SubEnd Classif (hdLineItemRow.Value == string.Empty) { cbo = (RadComboBox)radGrid.MasterTableView.GetInsertItem().FindControl("cbo"); } else { int itemIdex = Convert.ToInt32(hdLineItemRow.Value); cbo = (RadComboBox)radGrid.MasterTableView.Items[itemIdex].EditFormItem.FindControl("cbo"); }
<telerik:RadComboBox runat="server" ID="lstBusiness" OnSelectedIndexChanged="lstBusiness_SelectedIndexChanged" AutoPostBack="True" EnableViewState="true" MarkFirstMatch="true" />We have out first Telerik application ready for deployment on a server. We have .Net 4.0 and are developing in C#, using Telerik UI for ASP.NET AJAX
Do we need to install any software on the server? Could you point me to the appropriate documentation.
Regards,
Robin