Post Reply 
Status Bar: Append Time
Mar. 02, 2009, 11:21 PM
Post: #8
RE: Status Bar: Append Time
(Mar. 02, 2009 05:32 PM)sidki3003 Wrote:  If i turn off "Page Load Time to Status Bar", switch tabs in Firefox 3, click into page, the time doesn't update.
Does initial "Page Load Time to Status Bar" work for you in FF3?
If I switch tabs in FF3 it doesn't change anything in its Status Bar. Sad

It looks like FF3 doesn't handle Status Bar property by itself. You have to set "window.defaultStatus" every time the windows gets focus (and never touch "window.status", BTW). Otherwise it shows an old value Sad
IE, on the other hand, supports it properly by itself. You switch tabs and it displays appropriate data in status bar immediately.

Here is example of page that helps FF3 to show status bar correctly. But it uses onfocus handler:
Code:
<html>
<head>
<title></title>
<script type="text/javascript"><!--
function onF () {
  window.defaultStatus = 'Default Status 01';
}
window.onfocus = onF;
//--></script>
</head>

<body>
</body>
</html>
If I make couple of web pages (having different def. status numbers, of cause) and load them into different tabs of FF3 - I can toggle status bar correctly by switching those tabs.

Do we have an event of changing tabs in our code? It could be an on getting focus event or something? There would be the place to put a line to set "window.defaultStatus" appropriately.

Or may be there is just another simple solution that I do not see at the moment...
Add Thank You Quote this message in a reply
Post Reply 


Messages In This Thread
Status Bar: Append Time - OZO - Mar. 01, 2009, 05:03 AM
RE: Status Bar: Append Time - sidki3003 - Mar. 01, 2009, 10:21 AM
RE: Status Bar: Append Time - OZO - Mar. 01, 2009, 07:21 PM
RE: Status Bar: Append Time - ProxRocks - Mar. 01, 2009, 11:31 AM
RE: Status Bar: Append Time - sidki3003 - Mar. 01, 2009, 08:10 PM
RE: Status Bar: Append Time - OZO - Mar. 01, 2009, 08:30 PM
RE: Status Bar: Append Time - sidki3003 - Mar. 02, 2009, 05:32 PM
RE: Status Bar: Append Time - OZO - Mar. 02, 2009 11:21 PM
RE: Status Bar: Append Time - sidki3003 - Mar. 03, 2009, 12:44 PM
RE: Status Bar: Append Time - sidki3003 - Mar. 03, 2009, 05:41 PM
RE: Status Bar: Append Time - OZO - Mar. 03, 2009, 08:00 PM
RE: Status Bar: Append Time - sidki3003 - Mar. 03, 2009, 08:17 PM
RE: Status Bar: Append Time - OZO - Mar. 03, 2009, 08:26 PM

Forum Jump: