Hi Guys!
I have a big problem and i need some body help.
I have a radComboBox load with a concatenated string.
the filter doesn't work within i type a not number 0. i'm waiting some reply to solve my problem. thank's a lot.
I have a big problem and i need some body help.
I have a radComboBox load with a concatenated string.
the filter doesn't work within i type a not number 0. i'm waiting some reply to solve my problem. thank's a lot.
protected void loadComboBox() { try { Random rdCombo = new Random(); this.ComboTest.Items.Clear(); this.ComboTest.Items.Insert(0, new Telerik.Web.UI.RadComboBoxItem("", "")); for(int i = 0; i < 120; i++) { this.ComboTest.Items.Insert((i + 1), new Telerik.Web.UI.RadComboBoxItem("000" + rdCombo.Next(120) + " - " + "Descrizione " + (i + 1), Convert.ToString((i + 1)))); } this.ComboTest.Filter = Telerik.Web.UI.RadComboBoxFilter.Contains; this.ComboTest.Sort = Telerik.Web.UI.RadComboBoxSort.Ascending; } catch(Exception ex) { throw ex; } }