I need to set the focus (selected menu item) on page load and can't figure out how to do it correctly. In code behind I tried
this.RadMenu1.Items[0].CssClass = "rmFocused";
and that works but it never loses focus no matter which menu items are clicked. I can't figure out how to make it lose focus when another menu item is clicked. I tried a client side event to set the CssClass and it does not work, nor does item.focus() - can't get any client side event to make it focused on loading. Seems a very simple task I want to do - just focus the darn item onload and take focus off when another item selected - simple eh? lol