Product Bundles
DevCraft
All Telerik .NET tools and Kendo UI JavaScript components in one package. Now enhanced with:
Web
Mobile
Document Management
Desktop
Reporting
Testing & Mocking
CMS
UI/UX Tools
Debugging
Free Tools
Support and Learning
Productivity and Design Tools
Hello,
I want the rad menu to appear when i hover on it and immediately after clicking on a item, it should hide the menu.
Is there any built in property for this?
Thanks in advance
<div id=
"hiddenDivWrapper"
>
"menuWrapper"
style=
"visibility: hidden;"
<telerik:RadMenu ID=
"RadMenu1"
runat=
"server"
OnClientItemClicked=
"OnClientItemClicked"
<Items>
<telerik:RadMenuItem Text=
"Item1"
></telerik:RadMenuItem>
"Item2"
"Item3"
</Items>
</telerik:RadMenu>
</div>
<script>
$telerik.$(
"#hiddenDivWrapper"
).hover(
function
() {
"#menuWrapper"
).css(
"visibility"
,
"visible"
);
});
OnClientItemClicked(sender, args) {
"hidden"
}
</script>