Hello
I'm having issues with a combobox trying to reproduce the validation groups example.
However my issues have nothing to do with the validations groups but only with the display of the RadComboBoxItem (cf. attached screenshot)
Here is my ASPX code :
And my C# code :
Thank you for your help, I start to be kind of desperate here T_T
Sylvain
I'm having issues with a combobox trying to reproduce the validation groups example.
However my issues have nothing to do with the validations groups but only with the display of the RadComboBoxItem (cf. attached screenshot)
Here is my ASPX code :
<label>Project : </label> <telerik:RadComboBox ID="ComboBoxProjects" Width="180px" runat="server" />And my C# code :
protected void Page_Load(object sender, EventArgs e) { if (!IsPostBack) { this.ComboBoxProjects.Items.Add(new RadComboBoxItem("- Search in -")); this.ComboBoxProjects.Items.Add(new RadComboBoxItem("All Platforms")); this.ComboBoxProjects.Items.Add(new RadComboBoxItem("ASP.NET")); this.ComboBoxProjects.Items.Add(new RadComboBoxItem("WinForms")); this.ComboBoxProjects.Items.Add(new RadComboBoxItem("Silverlight")); this.ComboBoxProjects.Items.Add(new RadComboBoxItem("WPF")); this.ComboBoxProjects.Items.Add(new RadComboBoxItem("Reporting")); }}Thank you for your help, I start to be kind of desperate here T_T
Sylvain