0

BUG! Datebox popup closing prematurely and orphaning shadow.

asked 2009-04-29 20:41:42 +0800

dastultz gravatar image dastultz
797 9

Run the following. Click on the button to pop up the calendar. Pick a date (a DAY not a MONTH). The pop-up closes and the label at the bottom updates. Good. Now pop up the calendar but click a MONTH. The pop-up closes and the label updates, but the shadow of the pop-up remains. Further pop ups produce more shadows! There are two problems here: I don't want the pop-up to close when I pick a month, in fact I don't want the change event fired when selecting a month, just when finally picking a date. Second, (or third, if you prefer) is the rather serious problem of shadow poo-poo.

Any workarounds would be appreciated as this really gums up the page.

Zk 3.6.1FL on
Mac: FF 3.0.10, Safari 3.2.1
Win XP: IE 7.0, FF 3.0.9

Thanks.
/Daryl

delete flag offensive retag edit

3 Replies

Sort by ยป oldest newest

answered 2009-04-29 20:48:53 +0800

dastultz gravatar image dastultz
797 9

I suppose it would be helpful if I included the example code:

<window>
	<vbox id="container">

	<datebox id="db" onChange="go(event.getTarget())" />
	<space height="300px" />
	<zscript>
	void go(Component db) {
		Component comp = container.getFellowIfAny("result");
		if (comp != null) container.removeChild(comp);
		Label lbl = new Label(((Datebox) db).getValue().toString());
		lbl.setId("result");
		container.appendChild(lbl);
	}
	</zscript>
	</vbox>
</window>

/Daryl

link publish delete flag offensive edit

answered 2009-04-29 20:53:08 +0800

dastultz gravatar image dastultz
797 9

Interestingly, changing the "container" from vbox to div fixes the premature closing and orphaned shadow problem. Of course my layout is messed up now...

/Daryl

link publish delete flag offensive edit

answered 2009-04-30 02:16:51 +0800

iantsai gravatar image iantsai
2755 1

I think it should be a bug, please post it to BUG tracker in SF.net

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: 2009-04-29 20:41:42 +0800

Seen: 143 times

Last updated: Apr 30 '09

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