Hello
I try to validate two RadComboBox's which are placed inside the EditTemplate of a FormView. The server-side validation is working fine bit the Client-side is giving me troubles.
It looks like that the RadComboBox are not yet available when the JavaScript is loaded. On this row of JavaScript:
var combo = $find("<%= rcbFuelType.ClientID %>");
I get this error message: Unknown identifier "rcbFuelType".
The FormView is part of UserContrle and I have placed the Javascript inside the asp:content tag where the FormView is. I have also tried to place it inside the EditTemplate without any result.
How can I get the this working?
Anders
<script language="javascript" type="text/javascript"> function ClientValidateFueltypes(source, arguments) { var combo = $find("<%= rcbFuelType.ClientID %>"); var combo2 = $find("<%= rcbFuelType2.ClientID %>"); if (combo.get_value() == "N.v.t.") { if (combo2.get_value() == "N.v.t.") { arguments.IsValid = false; } } }</script>
Hello Telerik,
We are using Telerik.Web.UI version 2014.3.1209.45 and we have noticed that our RadAjaxLoadingPanels are not animating in IE but they are in Firefox and Chrome. I have emulated IE versions 8-11 and it's the same. Is this a bug with this version of Telerik or am I doing something wrong?
I have attached a sample project where the problem is present my end.
Thanks

Hello,
I am following this example of Combobox in Radgrid.
I am having a problem with this part of the code behind: WHERE CompanyName LIKE @CompanyName + '%'"
protected void RadComboBox1_ItemsRequested(object sender, RadComboBoxItemsRequestedEventArgs e) { string sql = "SELECT [SupplierID], [CompanyName], [ContactName], [City] FROM [Suppliers] WHERE CompanyName LIKE @CompanyName + '%'"; SqlDataAdapter adapter = new SqlDataAdapter(sql, ConfigurationManager.ConnectionStrings["NorthwindConnectionString"].ConnectionString); adapter.SelectCommand.Parameters.AddWithValue("@CompanyName", e.Text);I use Mysql and not Sql Server, and it seems that it does not accept + '%'"
How can I replace that to state "contains"?
Thank you
Hello,
I am using RadHtmlChart with asp.net and I am running into a format issue where 4 vertical grid lines are repeating outside of the chart. I set the width of the chart to 1000px but it continues past this limit and outside of my div containers and panel. Has anyone happened upon this error before? I attached a picture for reference.
Hello,
I have a radgrid binded by sql.
What I am trying to implement is a 3rd linkbutton (in addition of Insert and Cancel) triggering consecutively PerformInsert command (to insert new item) and InitInsert (not to have to click again on "Add new".
Anyone got an idea?
Hi all,
I've been kinda pulling my hair out over this one, I'm trying to get Wizard validation working and I don't know if its just something in my project or what, but no matter what I do, they will not fire. I've gone as far as copying the example from the Wizard Validation article (http://www.telerik.com/help/aspnet-ajax/wizard-validation.html) and it still will not fire.
Am I missing something? Maybe some project level setting? Like I said, I feel like I'm taking crazy pills :P Thanks in advance!
My entire test page, the validation does not fire:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"><html xmlns='http://www.w3.org/1999/xhtml'><head runat="server"> <title>Telerik ASP.NET Example</title></head><body> <form id="form1" runat="server"> <telerik:RadScriptManager runat="server" ID="RadScriptManager1" /> <telerik:RadSkinManager ID="RadSkinManager1" runat="server" ShowChooser="true" /> <div> <telerik:RadWizard ID="RadWizard6" runat="server"> <WizardSteps> <telerik:RadWizardStep ID="RadWizardStep1" CausesValidation="true" Title="Personal Info" runat="server" StepType="Step" ValidationGroup="personalInfo"> <div class="inputWapper first"> <asp:Label ID="Label3" Text="First Name: *" runat="server" AssociatedControlID="FirstNameTextBox" /> <telerik:RadTextBox ID="FirstNameTextBox" runat="server" ValidationGroup="personalInfo" Width="320px"></telerik:RadTextBox> <asp:RequiredFieldValidator ID="FirstNameRequiredFieldValidator" runat="server" ControlToValidate="FirstNameTextBox" EnableClientScript="true" ValidationGroup="personalInfo" ErrorMessage="required field" CssClass="validator" ForeColor="Red"></asp:RequiredFieldValidator> </div> </telerik:RadWizardStep> <telerik:RadWizardStep Title="SecondStep"> <asp:TextBox ID="TextBox1" runat="server"></asp:TextBox> </telerik:RadWizardStep> </WizardSteps> </telerik:RadWizard> </div> </form></body></html>