0

zk1.0.0 firefox

asked 2006-02-27 21:04:18 +0800

admin gravatar image admin
18691 1 10 130
ZK Team


Orignial message at:
https://sourceforge.net/forum/message.php?msg_id=3600362

By: fernando_deleon

Hi...
I ran a simple ZK page i created with rc8 basically it was testing for integration with JSF

The code of the page is this..

<?taglib uri="/WEB-INF/core.dsp.tld" prefix="p"?> <zk>
<grid width="100%">
<columns>
<column width="50%" label="Person Selected"/>
</columns>
<rows>
<row>
The person selected is: <label id="personLabel"
use="org.zkjsf.view.PersonLabel"/>
</row>
</rows>
</grid>
</zk>

the PersonLabel java is should simply call this method (PersonLabel extends
Label)
public void onCreate() {
Session session = Sessions.getCurrent();
String name = (String) session.getAttribute("personName");
System.out.println("the name is:"+name);
super.setValue(name);
}

However under firefox i get page correctly with its name loaded correctly however i get the Loading (1)... embedded popup window.. and it seems that it never dissapears.
Under IE all seems fine.
I just downloaded ZK1.0.0
help plsss

delete flag offensive retag edit

2 Replies

Sort by ยป oldest newest

answered 2006-02-27 21:59:58 +0800

admin gravatar image admin
18691 1 10 130
ZK Team


Orignial message at:
https://sourceforge.net/forum/message.php?msg_id=3600475

By: fernando_deleon

I will like to comment that the problem stopped after i did a refresh to the page And it did stop thereafter even after i had re-started the server?!!
so i guess under firefox so far is A.O.K! :D well done! :)

link publish delete flag offensive edit

answered 2006-02-28 01:29:54 +0800

admin gravatar image admin
18691 1 10 130
ZK Team


Orignial message at:
https://sourceforge.net/forum/message.php?msg_id=3600757

By: tomyeh

Loading (1)... means the client engine is loading a JavaScript. It disappears once all required JavaScript are loaded.

In your case, it looks like the server doesn't return what you requested -- for unknown reason. After reload, the JavaScript file is loaded (and cached).
Did you press ESC or something when Loading (1)... appear? Maybe we shall add a timeout and retry mechanism.

link publish delete flag offensive edit
Your reply
Please start posting your answer anonymously - your answer will be saved within the current session and published after you log in or create a new account. Please try to give a substantial answer, for discussions, please use comments and please do remember to vote (after you log in)!

[hide preview]

Question tools

Follow

RSS

Stats

Asked: 2006-02-27 21:04:18 +0800

Seen: 469 times

Last updated: Feb 28 '06

Support Options
  • Email Support
  • Training
  • Consulting
  • Outsourcing
Learn More