Friends,
Tabs are working just fine in my project but on resizing the window I'd like to re-size the tabs to make sure that they do not get messed with the other controls, any clues ?
Thanks,
-Aarsh
Alternatively...

I was trying to have a javascript just like the below one, so that as soon as the mouse hovers the Rad-menu, the Z-index becomes 100 and -1 once Mouse gets out.
I am using the following java-script for the same ...
Tabs are working just fine in my project but on resizing the window I'd like to re-size the tabs to make sure that they do not get messed with the other controls, any clues ?
Thanks,
-Aarsh
Alternatively...
I was trying to have a javascript just like the below one, so that as soon as the mouse hovers the Rad-menu, the Z-index becomes 100 and -1 once Mouse gets out.
I am using the following java-script for the same ...
//<![CDATA[
function
RadMenu1_MouseOver(sender,args)
{
//Add JavaScript handler code here
var
id = sender.get_id();
var
menu = $(
".RadMenu(id$='"
+ id +
"']"
);
menu.css(
'z-index'
, 100);
}
//]]>
</script>
<script type=
"text/javascript"
id=
"telerikClientEvents2"
>
//<![CDATA[
function
RadMenu1_MouseOut(sender,args)
{
//Add JavaScript handler code here
//Add JavaScript handler code here
var
id = sender.get_id();
var
menu = $(
".RadMenu(id$='"
+ id +
"']"
);
menu.css(
'z-index'
, -1);
}
//]]>