OnSelectedIndexChanged="cbProductItems_SelectedIndexChanged"cbProductItems.ClearSelection();cbProductItems.DataBind();Hello
I have a problem with radMenu under IE8/9 :
If you move from a submenu to another(mouse moves from one item to another : img 1et 2), the first sub-item closes and the second sub-item opens(img3). The problem is that the second sub-menu disappears after (img4), the mouse is always on the sub-menu.
This problem does not exist if we navigate in radMenu as follows (always under IE8 / 9):
- You unfold the sub-menu of item
- You leave the submenu, you expect that this submenu is closed.
- you open another submenu of another item
Then :
The problem occurs if you go directly from a sub-menu to another in IE8 / 9
We do not have this problem in Firefox and Chrome
rcbClients.SelectedValue = ""
rcbClients.Clients.Text = ""
<
telerik:RadComboBox runat="server" ID="rcbClients" Height="100px" EnableLoadOnDemand="true" AutoPostBack="true" ValidationGroup="Client"
ShowMoreResultsBox="true" EnableVirtualScrolling="true" AllowCustomText="false" OnClientItemsRequesting = "OnClientItemsRequesting"
EmptyMessage="Type lastname ...">
<WebServiceSettings Path="WCFClients.svc" Method="LoadClients" />
</
telerik:RadComboBox>
My Page with Rad Combo:
Properties set: AllowCustomText = True , EnableTextSelection = True and MarkFirstMatch = True
When the first letter typed matches an available title in the dropdown, the title is populated.
The problem is that when you continue typing, even if the next characters match the first or another entry, the characters are appended to the front of the populated title making the entry entirely unintended and preventing freeform entry. Normal expected behavior would be for the automatically suggested selection to go away and accept the user entered characters if the remaining entries do not match.

Telerik Version we are using:2010.3.1317 we are using .net framework 2.0 and cannot upgrade to 3.5 or 4.0 at the moment.
and the version we are using, i think, is the latest one for 2.0.
Problem Detail:
we have an user control .ascx(Editor) that is wrapping RadEditor.
now using chrome or safari, on pressing "Tab" key it inserts:
<span class="Apple-tab-span" style="white-space:pre"> </span>
to overcome this problem i decided to override Telerik.Web.UI.Editor.CommandList["InsertTab"] event so on .ascx page i did following:
<script type="text/javascript">
if (typeof (Telerik) != 'undefined') {
Telerik.Web.UI.Editor.CommandList["InsertTab"] = function(commandName, editor, args) {
//alert('success");
editor.pasteHtml(" ");
};
}
</script>
Which is working fine in IE9 but not in chrome/safari. i tried using an alert message but it simply not firing the code.
I would appreciate any/all help i could get.

<telerik:RadComboBox ID="dropDownListCategory" MarkFirstMatch="True" EmptyMessage="<--select One-->"
AllowCustomText="false" runat="server" Width="200px" Height="200px" CssClass="maarginleft10 textBox200"
Skin="Web20" AutoPostBack="true" EnableEmbeddedSkins="false" OnSelectedIndexChanged="dropDownListCategory_SelectedIndexChanged"
EnableEmbeddedScripts="true" >
</telerik:RadComboBox>
When i type nothing in the combobox the empty message displayed correctly. at the same time i need to validate one more thing. If i enter the text which is not at all exists there in the dropdown then i need to show the same empty message in tabout. but the postback occurs and taking the invalid text to the server. I used onblur event but it throws error
function OnClientBlur(item) {
//i need the following here
if(item.value=="")
// empty message of the combo shd be set if the invalid text typed
// EmptyMessage="<--select One-->"
}
how to achieve this. pls help
Thanks,
Jeevitha