Open GoogleCodeExporter opened 8 years ago
I just tested on Ubuntu & Windows XP with Firefox 3.6 and Chrome, and on Mac
with
Safari and it worked fine. I don't have Windows7 so i'm not able to test ...
Does your keyboard combine the Backspace & Delete key into one key? On my
wife's Mac
laptop the keys are combined and as a result the key down event handler
registers the
keystroke as the 'backspace' key instead of 'delete' key. That is the only
explanation
I can think of...
Regarding rounded corners ... IE8 doesn't have rounded corners because iE8
doesn't
support the css3 rounded corner property.
Original comment by Brad.Ryd...@gmail.com
on 27 May 2010 at 12:15
[deleted comment]
i tried it on chrome and firefox in kubuntu, but same problem occured. I'll try
to
fix it so that I could provide better info on how to reproduce it and fix it.
P.S. it really could be dialog box. also it could be that i am using it in
UiBinder
Original comment by doom777
on 27 May 2010 at 4:53
Ok, debugging has revealed that it's definitely DialogBox related. Putting a
calendar
in a dialog box somehow makes it lose focus, and it seems impossible to give it
focus
back. No similar issue is reported on IE.
Original comment by doom777
on 27 May 2010 at 9:21
Original comment by Brad.Ryd...@gmail.com
on 1 Jun 2010 at 9:58
Hi guys,
I have the same problem. I've tested my code in Firefox 3.6, Chrome and Safari,
with the same result (also tested in Windows XP, OSX 10.6 and Ubuntu 10.4)
In my case the GWT-Cal widget is in a SimplePanel created through an UiBinder.
I'll try to simplify my code as much as possible to see if I can find where is
the problem
Cheers.
Original comment by ctasada
on 7 Jul 2010 at 3:20
I've added traces (System.out.pritln) to different parts of the GWT-Cal and
recompiled. All the traces fired in mouse related events are working fine, but
the trace that should be fired in InteractiveWidget is never fired.
I checked in the 3 focusPanel.addKeyxxxx methods and none of them is executed.
That makes me think that the focusPanel is never firing the events.
I also tried to remove the Event.KEYEVENTS from the sinkEvents, since we're not
listening to them in the onBrowserEvent, but the result was the same.
I'll keep attacking this problem tomorrow, but right now I don't have any ideas
:(
PS: I removed my gwt-cal instance from the UiBinder and didn't make any
difference. I'm sure I'm missing some obvious problem, since the gwt-demo works
perfectly :(
Original comment by ctasada
on 7 Jul 2010 at 3:55
Hello,
I might not have followed everything but I think that beiing into a dialogBox
(or another popup) by default disallow you to obtain focus on an other popup.
I had a similar problem and add this line to get the dialogBox working:
dialogBox.setModal(false);
Original comment by pier...@pvittet.com
on 21 Jul 2010 at 10:29
Same problem here. Win 7 x64, FF6.0.2. However, comment 8 did fix the problem.
Setting the popup to be non-modal worked. However, what I really need IS a
modal popup, so would be nice if this could be handled somehow.
Original comment by thomas.d...@gmail.com
on 5 Oct 2011 at 7:46
Just another thing: having ANY modal dialog box open kills the focus behavior.
Be sure to hide any modal popup before showing the calendar popup. I cam across
this when I opened a non-modal dialog containing the calendar with a button on
a modal dialog.
Original comment by thomas.d...@gmail.com
on 6 Oct 2011 at 7:58
Original issue reported on code.google.com by
doom777
on 26 May 2010 at 7:29