I have the following combo box in many places in my code:
| <telerik:RadComboBox ID="cboSystem" runat="server" > |
| <CollapseAnimation Type="OutQuint" Duration="200"></CollapseAnimation> |
| </telerik:RadComboBox> |
When you tab into this box and type 'l' (cap locks doesn't matter), it selects Lizard, as I would expect it to. However, if you tab into the same box, and type 'd' or 'c', it does not snap to the items as you would expect and as it did with the 'l'.
I do not want to allow editable text in the combo box, but is there a property that will tell it to ignore case when snapping to an item in a combobox like that above?
Any input is appreciated.
Thanks,
Marty
if (CountryComboBox.Items.Count == 0)
{
CountryComboBox.Items.Add(new RadComboBoxItem());
}
RadTreeView CountryTree = (RadTreeView)CountryComboBox.Items[0].FindControl("CountrySelector");
CountryTree.Nodes.Clear();
// communicate the tree's clientside via the attributes collection
CountryComboBox.Items[0].Attributes["TreeID"] = CountryTree.ClientID;
CountryTree.DataTextField = "Title";
CountryTree.DataFieldID = "ID";
CountryTree.DataValueField = "ID";
CountryTree.DataSource = Countries;
CountryTree.DataBind();
if (CountryComboBox.Items.Count == 0)
{
CountryComboBox.Items.Add(new RadComboBoxItem());
}
RadTreeView CountryTree = (RadTreeView)CountryComboBox.Items[0].FindControl("CountrySelector");
CountryTree.Nodes.Clear();
// communicate the tree's clientside via the attributes collection
CountryComboBox.Items[0].Attributes["TreeID"] = CountryTree.ClientID;
CountryTree.DataTextField = "Title";
CountryTree.DataFieldID = "ID";
CountryTree.DataValueField = "ID";
CountryTree.DataSource = Countries;
CountryTree.DataBind();
MyAjaxManager.AjaxSettings.AddAjaxSetting(CountryTree, CourseFinderSearchResults);
MyAjaxManager.AjaxSettings.AddAjaxSetting(CountryTree, BrandSelector);

| Protected Sub Page_Load(ByVal sender As Object, ByVal e As EventArgs) |
| FileExplorer1.EnableViewState = False |
| UpdateVisibleControls() |
| FileExplorer1.EnableOpenFile = enableOpenFile.Checked |
| FileExplorer1.DisplayUpFolderItem = displayUpFolder.Checked |
| If Not enableUpload.Checked Then |
| FileExplorer1.Configuration.UploadPaths = New String(0) {} |
| End If |
| FileExplorer1.InitialPath = Page.ResolveUrl("~/FileExplorer/Examples/Default/Images/Northwind/Flowers/") |
| End Sub |
| Protected Sub UpdateVisibleControls() |
| Dim explorerControls As Telerik.Web.UI.FileExplorer.FileExplorerControls = 0 |
| If visibleControls.Items(0).Selected Then |
| explorerControls = explorerControls Or Telerik.Web.UI.FileExplorer.FileExplorerControls.AddressBox |
| End If |
| If visibleControls.Items(1).Selected Then |
| explorerControls = explorerControls Or Telerik.Web.UI.FileExplorer.FileExplorerControls.Grid |
| End If |
| If visibleControls.Items(2).Selected Then |
| explorerControls = explorerControls Or Telerik.Web.UI.FileExplorer.FileExplorerControls.Toolbar |
| End If |
| If visibleControls.Items(3).Selected Then |
| explorerControls = explorerControls Or Telerik.Web.UI.FileExplorer.FileExplorerControls.TreeView |
| End If |
| FileExplorer1.VisibleControls = explorerControls |
| End Sub |

