- Master Pages
- Menu Controls
- Themes and Skins
- Login Controls
- Data Source Controls
- Sitemap
We have used all of them listed above. And we have faced minor side effects of them as well.
Here I am gogin to discuss on the Menu Control used in IE (as most of our users are using IE)
Below mentioned problems I have faced in IE 6.0
- But mean time if you move mouse over any menu the progress bar shows as below which indicates that thread aborted or completed. And this happens the moment you take mouse over to any menu it immediately fills the progress bar.
- But reality is it just fills the progress bar and loding happes as expected. Here there is no problem with the functionality but with the usability.
- The code responsible for the problem is emitted java script code present in the webresource.axd. Unfortunately we cannot change it. The PopOut_Show is the function causing the issue and it is a part of the call chain that is triggered by the onmouseover event.
function PopOut_Show(panelId, hideScrollers, data) {
//Code
if (parent.tagName.toLowerCase() == "html") {
document.body.appendChild(childFrame);
}
else {
parent.appendChild(childFrame);
}
//Code
}
In case if anybody has resolved this problem please let me know bharat.mane@gmail.com.
Bharat Mane
1 comment:
There is another constraint on the menu control is every menu item shall have unique URL whereas in some cases we have to show two different menus with the same URL.
Post a Comment