or
It really would be a pain if I had to create new customised dialogs for this purpose.
Also, is there any detailed information regarding radeditor extensions and they seem to be in snipets all over the place.
Thanks,
Graham
<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server"><telerik:RadFormDecorator ID="RadFormDecorator1" Runat="server" Skin="WebBlue" /> <div class="tablediv"><div class="rowdiv"><div class="celldivleft">First Name:</div><div class="celldivright"> <asp:TextBox ID="FirstNameBox" runat="server"></asp:TextBox></div></div> <div class="rowdiv"><div class="celldivleft">Last Name:</div><div class="celldivright"> <asp:TextBox ID="LastNameBox" runat="server"></asp:TextBox></div> </div> <div class="rowdiv"><div class="celldivleft">Last Name:</div><div class="celldivright"><telerik:RadTextBox ID="RadTextBox1" runat="server"> </telerik:RadTextBox></div> </div> <div class="rowdiv"> <div class="celldivleft"> </div> <div class="celldivright"> <asp:Button ID="SubmitButton" runat="server" Text="Submit" onclick="SubmitButton_Click" /> </div> </div> </div> </asp:Content>protected void Page_InitComplete(object sender, EventArgs e) { RadTextBox rtb = (this.Page.FindControl("RadTextBox1") as RadTextBox); }if (!Page.IsPostBack) { Grid.MasterTableView.IsItemInserted = true; Grid.Rebind(); }
I use web service for populate combobox.
I want to send variables to web service from any other item's value on form (textbox,dropdown etc.)
Ajaxautocomplete extender, there is UseContextKey feature.
For radcombobox is there any feature?
Regards.