C
CMM
The menu control in ASP.NET 2.0 is pretty cool... but there's seems to be a
fairly glaring oversight in it. Only the text is clickable... the
surrounding area of the menu is not clickable even though it responds to
"hover." This is very user-unfriendly and is most noticeable when you orient
the menu vertically and when a menu item has text in it that is considerably
shorter than the other items.
The control uses tables to render the menus... and the HTML for a menuitem
looks like this when rendered:
<td onmouseover="Menu_HoverStatic(this)" onmouseout="Menu_Unhover(this)"
onkeyup="Menu_Key(this)" id="Menu1n0">
AFAIK <TD> supports "onlick" so there's no reason why the control omits this
functionality.
fairly glaring oversight in it. Only the text is clickable... the
surrounding area of the menu is not clickable even though it responds to
"hover." This is very user-unfriendly and is most noticeable when you orient
the menu vertically and when a menu item has text in it that is considerably
shorter than the other items.
The control uses tables to render the menus... and the HTML for a menuitem
looks like this when rendered:
<td onmouseover="Menu_HoverStatic(this)" onmouseout="Menu_Unhover(this)"
onkeyup="Menu_Key(this)" id="Menu1n0">
AFAIK <TD> supports "onlick" so there's no reason why the control omits this
functionality.