I need to add some validations before the user navigates away via an ASP.NET Menu.
I noticed that the items are rendered to use a javascript function called Menu_Key
<td id="ctl00_MainMenun1" onmouseover="Menu_HoverStatic(this)" onmouseout="Menu_Unhover(this)" onkeyup="Menu_Key(this)">
I there a way to override that function and have the menu execute one of mine, from which I could validate what I need and then call the original?
Above solution is a valid one, but in common case redefinition can be done in a bit more flexible way
In such case , any changes in function signature , will not break wrapping logic.
Just redefine the function at the bottom of the page (technically after the initial declaration).
Redefine the function after it was initially defined, but keep track of it in a var so that you can call it later. You would effectively be renaming the original Menu_Key function.
You have more than one way to do this. Depend of what you want.
If you want a function to run before the existing one then add this.
If you want to run the second function conditionally then add this
Use the js code:
hth!