I've implemented one of your earlier forum posts regarding this very topic, with the exception of https. I utilized the 'ClientSideOnItemMouseOver' call to a javascript function that then sets the window.status to the retrieved paramater:
Code: HTML/ASPX
function mouse_over_handler(e, info) {
window.status = info.getItem().getNavigateUrl();
}
ClientSideOnItemMouseOver="mouse_over_handler"
This works great when not behind a secure site. But for whatever reason, when we publish our site and it's behind the cert, the status bar doesn't display the url.
Can you help?