GWT & open.window - not opening on top.

2015-02-12 Thread Janel Miller
We use GWT extensively, one of my menuItems opens an open.window and the 
new window doesn't open on top.  It opens behind the front window.  I am 
using IE9, our customers only use IE.  how can I get this to work? 

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


GWT editors and objects with optional data

2012-09-25 Thread Austin Miller
Hi,

I'm trying to set up get editors with classes that are auto-generated to be 
something like:

public static class Foo {
  String name;
  boolean isNameSet;

  public String getName() {
return name;
  }

  public void setName(String name) {
isNameSet = true;
this.name = name;
  }

  public boolean hasName() {
return isNameSet;
  }
}

But when I try the code:

interface Driver extends SimpleBeanEditorDriver {}

public static class EditorTest extends DialogBox implements Editor {
  @Path("name")
  Label nameEditor;
  public EditorTest() {
nameEditor = new Label();
  }
}

public void edit() {
  Driver driver = GWT.create(Driver.class);
  EditorTest test = new EditorTest();
  driver.initialize(test);
  driver.edit(new Foo());
  test.center();
}

I get a compilation error about String not having a setName() or hasName() 
method. Is there some way I can use the GWT editor framework with objects 
that are like Foo (have set/get/has for each field)?

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/Ezq0SUseqk0J.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: ERROR: Expecting version between 5 and 6 from client, got 7

2011-05-24 Thread miller
Are you doing anything strange with serialization?  I can't remember 
specifics but I think this error is thrown incorrectly sometimes when there 
is another exception thrown in serialization/deserialization.  Sorry I don't 
have more details but maybe this will point you in the correct direction.


-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



GPE Error with UI:Binder CodeAssist

2011-05-05 Thread miller
When editing a *.ui.xml file, in WindowBuilder or UI Template Editor, code 
assist will take 20-90 seconds to pop-up and eclipse is frozen.  This 
happens every time.

The error log shows this error sometimes:

Encoded problem type ID is invalid: 420  

 from the com.google.gdt.eclipse.core plug-in.  I am clueless as to the 
problem or a workaround.  Any ideas?

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: GWT UIBinder content assist lag

2011-05-04 Thread miller
I am seeing the same issue. 

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: GPE auto-complete only partially working for UiBinder tags

2011-02-14 Thread miller
I have been seeing the same issue since loading the GWT Designer tools.  I 
am still on 1.4.1.v201012170127.

The warning says:
Unhandled event loop exception

The top of my stack trace is:
java.lang.NullPointerException
at 
com.google.gwt.eclipse.core.uibinder.contentassist.AbstractCompletionProposal.getActiveViewer(AbstractCompletionProposal.java:136)
at 
com.google.gwt.eclipse.core.uibinder.contentassist.AbstractCompletionProposal.apply(AbstractCompletionProposal.java:74)
at 
org.eclipse.jface.text.contentassist.CompletionProposalPopup.insertProposal(CompletionProposalPopup.java:933)
at 
org.eclipse.jface.text.contentassist.CompletionProposalPopup.insertSelectedProposalWithMask(CompletionProposalPopup.java:879)
at 
org.eclipse.jface.text.contentassist.CompletionProposalPopup.verifyKey(CompletionProposalPopup.java:1305)
at 
org.eclipse.jface.text.contentassist.ContentAssistant$InternalListener.verifyKey(ContentAssistant.java:806)
at 
org.eclipse.jface.text.TextViewer$VerifyKeyListenersManager.verifyKey(TextViewer.java:489)
at 
org.eclipse.swt.custom.StyledTextListener.handleEvent(StyledTextListener.java:65)
at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)



I can send the entire stack trace if needed.




-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Streaming

2011-02-11 Thread miller
Do you have any more details?  You question is very vague.

-mike

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Unknown problem upgrading from 1.7.1 to 2.1.0

2010-12-27 Thread miller
I am having the same issue.  Did you find a solution?

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to google-web-tool...@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Clicking HyperLink Twice or more...

2010-08-12 Thread miller
Have you checked for javascript errors on the first click?

On Aug 12, 9:50 am, Santosh kumar  wrote:
> Hi aditya,
>
> Actually the issue is when i click the continuously the same link  it should
> work..
> in the sense it should work as it was clicked for the fist time ...??
> it should start its work from the first ... like (refresh)... i hope u got
> my doubt ...!!!
>
> On Thu, Aug 12, 2010 at 7:07 PM, aditya sanas <007aditya.b...@gmail.com>wrote:
>
>
>
>
>
> > Hi,
>
> > check for click handlers that you are registering for that particular link
> > Ideally it should work fine...
> > meanwhile if you are losing that event handler after first click then and
> > then only this problem could be faced.
> > I never faced such kind of situation with the links
> > I used Anchor from GWT...
>
> > --
> > Aditya
>
> > On Thu, Aug 12, 2010 at 6:19 PM, Santosh kumar  wrote:
>
> >> Hi,
>
> >> I am using GWT HyperLinks in my Project, i want some clarification about
> >> these links.
> >> when i click on the link for the first time it works fine. Immediately
> >> when i click the same link its not working.
> >> Like control is not coming to that link.. is their any logic to get the
> >> control to the link when its get clicked continuously.
> >> please can any one answer to my doubt ???
>
> >> --
> >> Thanks & Regards
>
> >> *S a n t o s h  k u m a r . k*
>
> >> --
> >> You received this message because you are subscribed to the Google Groups
> >> "Google Web Toolkit" group.
> >> To post to this group, send email to google-web-tool...@googlegroups.com.
> >> To unsubscribe from this group, send email to
> >> google-web-toolkit+unsubscr...@googlegroups.com >>  cr...@googlegroups.com>
> >> .
> >> For more options, visit this group at
> >>http://groups.google.com/group/google-web-toolkit?hl=en.
>
> >  --
> > You received this message because you are subscribed to the Google Groups
> > "Google Web Toolkit" group.
> > To post to this group, send email to google-web-tool...@googlegroups.com.
> > To unsubscribe from this group, send email to
> > google-web-toolkit+unsubscr...@googlegroups.com > cr...@googlegroups.com>
> > .
> > For more options, visit this group at
> >http://groups.google.com/group/google-web-toolkit?hl=en.
>
> --
> Thanks & Regards
>
> *S a n t o s h  k u m a r . k*

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to google-web-tool...@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: gwt click event

2010-04-18 Thread miller
You can add a NativePreviewHandler.  It will receive all events.

Event.addNativePreviewHandler

In the handler, you can do something like:
if (event.getTypeInt() == Event.ONMOUSEDOWN)
{

  if(Event does not target the button or the text area)
 {
//show your alert here

event.cancel(); //cancels the event from firing to the rest of the
app
 }
}


On Apr 18, 10:34 am, Muhammad Saifullah 
wrote:
> i need to register a cross platform and version independent click event to
> the document.
> that means i have a two text box and submit button but when i click outside
> of the two text box and submit button then
> alert will be displayed .how can i achive this by gwt
>
> document.get().addMouseClick ???
>
> --
> You received this message because you are subscribed to the Google Groups 
> "Google Web Toolkit" group.
> To post to this group, send email to google-web-tool...@googlegroups.com.
> To unsubscribe from this group, send email to 
> google-web-toolkit+unsubscr...@googlegroups.com.
> For more options, visit this group 
> athttp://groups.google.com/group/google-web-toolkit?hl=en.

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to google-web-tool...@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



FlexTable Row MouseOver

2009-11-03 Thread miller

I would like to receive MouseOver event for a row in a FlexTable and I
have not been able to figure it out.  Any ideas?
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to google-web-toolkit@googlegroups.com
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en
-~--~~~~--~~--~--~---



Re: Does GWT work in Snow Leopard?

2009-10-22 Thread miller

I am using GWT2.0 in snow leopard and eclipse and it's working great.



On Oct 22, 2:42 pm, Bart Guijt  wrote:
> GWT (1.7.1 and up!) *do* work in Snow Leopard. At the command  
> executing the HostedMode environment, add the -d32 option to tell the  
> VM to use the 32-bit version.
>
> Bart Guijt
>
> On 22 okt 2009, at 22 okt, 18:35, Joe wrote:
>
>
>
>
>
> > Is there no update on this sorry issue?  I keep expecting Google to do
> > The Right Thing - i.e., I click "update" in Eclipse and then
> > everything works - but after all this time with no solution my
> > paranoia gene has me thinking this may have more to do with Apple v.
> > Google issues than  64bit v. 32bit.
>
> > Joe
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to google-web-toolkit@googlegroups.com
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en
-~--~~~~--~~--~--~---



Re: Announcing GWT 2.0 Milestone 1

2009-10-12 Thread miller

I am using Snow Leopard w/ Eclipse Plugin.  When I run in Development
mode, my development mode window is under constant beach ball.

How do you work around this issue?  are there directions anywhere?

thanks-
Mike



On Oct 9, 5:36 pm, Ben  wrote:
> Hey, Guys,
>
> Thanks for the reply. I just found out that it is an open bug for
> OOPHM on Mac OS X. If you are curious, the bug is 
> here:http://code.google.com/p/google-web-toolkit/issues/detail?id=3923.
>
> cheers
> Ben
>
> On Oct 9, 2:01 pm, Christian Goudreau 
> wrote:
>
> > I did the same trick as Sky to get my project to work. But I still have to
> > problems.
>
> > First : When I lauch it in development mode, I can't close the development
> > mode hosted window without closing eclipse, that's anoying because I can't
> > switch to debug mode... So now, I just run it in debug without brake point
> > to make sure I'm able to stop it and close the development mode hosted
> > window.
>
> > Second : I have the new project html files instead of the one I'm using with
> > my project ! That's really weird, because on top of my application I have
> > everything from the new project html file, but my JS files, css files ar
> > linked correctly ! LOL
>
> > Christian
>
> > On Fri, Oct 9, 2009 at 1:36 PM, Ben  wrote:
>
> > > Sky, thanks for you reply. I am using Eclipse 3.5.0 (I am not sure
> > > updating to 3.5.1 matters) and my google eclipse plugin is uptodate.It
> > > still throws that exception if I just use default google plugin launch
> > > configuration.
>
> > > On Oct 8, 5:39 pm, Sky  wrote:
> > > > Ben, with 2.0 my projects launch the development shell when using the
> > > > Google plugin launch options. It launched for me even when I just
> > > > changed a project from 1.7.1 to 2.0, but you could try creating a
> > > > whole new project with 2.0 from the start and copy the files over from
> > > > the old project.
>
> > > > Make sure the google plugin and the appengine is fully up to date.
> > > > What version of Ecipse are you using? Try downloading the new 3.5.1
> > > > version.
>
> > > > Sorry I can't help any more than that. gl
>
> > > > On Oct 8, 3:50 pm, Ben  wrote:
>
> > > > > I have noticed that if you use Google Plugin to launch your project
> > > > > with 2.0 jar. The development shell does not launch at all. You have
> > > > > to launch it as a Java Application and set up some parameters by
> > > > > yourself, then you are able to see that GWT Develop Mode popup shell
> > > > > window. Is my observation correct?
>
> > > > > On Oct 8, 1:33 pm, Sky  wrote:
>
> > > > > > I got debugging to work!
>
> > > > > > I created a new GWT web app with the Eclipse google plugin using GWT
> > > > > > 2.0MS1 as the SDK. This is what most likely solved my problem. 
> > > > > > Simply
> > > > > > changing a project from GWT 1.7.1 to 2.0 must not be making all the
> > > > > > necessary changes to the auto generated files to be properly
> > > > > > compatible. Obviously this sort of thing will be ironed out for
> > > > > > release.
>
> > > > > > Then I needed to first launch (not a debug launch) the newly created
> > > > > > GWT web app (with the default app still intact). I tried this with a
> > > > > > browser that did not have the plugin installed (FF3.5) and when
> > > > > > navigating to the URL it auto directed me to the plugin install web
> > > > > > page and after installing the plugin the web app was rendered
> > > > > > correctly. Note that at this point I have not compiled the app so 
> > > > > > the
> > > > > > plugin is indeed doing its job! The java code is what is interacting
> > > > > > synchronously with the browser instead of the compiled JS!
>
> > > > > > Note that I had first attempted to launch the app in debug mode 
> > > > > > which
> > > > > > gave me 3 errors related to the Appengine
> > > > > > (com.google.apphosting.utils.jetty... yet eclipse could not resolve
> > > > > > com.google.apphosting.utils.jetty) but those errors went away as 
> > > > > > soon
> > > > > > as I did a non debug launch. In other words, the app was able to do 
> > > > > > a
> > > > > > debug launch only after doing a regular launch.
>
> > > > > > With the debug launch successful I was able to hit a breakpoint in
> > > the
> > > > > > onModuleLoad method of this default web app! I then copied all the
> > > > > > required files from my previous project into this new one. Once 
> > > > > > again
> > > > > > I was able to hit a breakpoint on the onModuleLoad method!
>
> > > > > > I am very excited to have this working!
>
> > > > > > On Oct 7, 8:32 pm, Sky  wrote:
>
> > > > > > > I set GWT 2.0 as the SDK for my project and it changed to the new
> > > > > > > Development Swing UI In-browser mode instead of the old hosted
> > > mode. I
> > > > > > > placed the given URL in both FF3.5 and IE8 and neither auto
> > > installed
> > > > > > > the required plugin. Since my app is already compiled it renders
> > > fine
> > > > > > > but I cannot debug. I tried manually install

Re: Does GWT work in Snow Leopard?

2009-08-31 Thread miller

I agree that it should be a simple patch to allow 1.6 or 1.7 to run in
hosted mode with Java 1.6 VM on snow leopardor is someone able to
provide instructions on how to perform the fix ourselves?



On Aug 30, 12:21 am, James  wrote:
> Hi... I just wanted to add that along with the suggestions on:
>
> http://wiki.oneswarm.org/index.php/OS_X_10.6_Snow_Leopard
>
> I had to rename the "CurrentJDK" symbolic link in
>
> /System/Library/Frameworks/JavaVM.framework/Versions/
>
> from 1.6.0 to the (newly added) 1.5.0 because it appears that ant was
> looking at the "CurrentJDK" for its version not the env.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to google-web-toolkit@googlegroups.com
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en
-~--~~~~--~~--~--~---



Re: oophm with the lastest eclipse plugin on Mac

2009-08-04 Thread miller

I am also getting the beachball with the swing window.  I am still
able to view my app in firefox and debug though.  Have not figured out
how to fix the beachball issue.

-mike

On Aug 4, 1:39 pm, Masto  wrote:
> Hi there,
>
> i'm currently trying to make the oophm works on my Mac using eclipse
> 3.5 and the latest plugin. I use the revision 5873 of the trunk (ant
> clean then ant > my project refers to build/staging/gwt-mac-0.0.0/).
>
> Because i use gwt 2.0, a checkbox appears under Run Configuration >
> GWT Tab > just under the URL. So i checked it.
>
> The logs show that :
>
> 2009-08-04 11:33:30.967 java[40650:80f] [Java CocoaComponent
> compatibility mode]: Enabled
> 2009-08-04 11:33:30.969 java[40650:80f] [Java CocoaComponent
> compatibility mode]: Setting timeout for SWT to 0.10
> 2009-08-04 11:33:34.458 java[40650:1c303] *** -[NSConditionLock
> unlock]: lock ( '(null)') unlocked when not
> locked
> 2009-08-04 11:33:34.459 java[40650:1c303] *** Break on _NSLockError()
> to debug.
> 2009-08-04 11:33:34.673 java[40650:1c303] *** -[NSConditionLock
> unlock]: lock ( '(null)') unlocked when not
> locked
> 2009-08-04 11:33:34.674 java[40650:1c303] *** Break on _NSLockError()
> to debug.
> 2009-08-04 11:33:34.775 java[40650:1c303] *** -[NSConditionLock
> unlock]: lock ( '(null)') unlocked when not
> locked
> 2009-08-04 11:33:34.775 java[40650:1c303] *** Break on _NSLockError()
> to debug.
> 2009-08-04 11:33:34.901 java[40650:1c303] *** -[NSConditionLock
> unlock]: lock ( '(null)') unlocked when not
> locked
> 2009-08-04 11:33:34.903 java[40650:1c303] *** Break on _NSLockError()
> to debug.
> 2009-08-04 11:33:38.207 java[40650:1c303] *** -[NSConditionLock
> unlock]: lock ( '(null)') unlocked when not
> locked
> 2009-08-04 11:33:38.208 java[40650:1c303] *** Break on _NSLockError()
> to debug.
> 2009-08-04 11:33:38.308 java[40650:1c303] *** -[NSConditionLock
> unlock]: lock ( '(null)') unlocked when not
> locked
> 2009-08-04 11:33:38.309 java[40650:1c303] *** Break on _NSLockError()
> to debug.
> 2009-08-04 11:33:38.445 java[40650:1c303] *** -[NSConditionLock
> unlock]: lock ( '(null)') unlocked when not
> locked
> 2009-08-04 11:33:38.445 java[40650:1c303] *** Break on _NSLockError()
> to debug.
> 2009-08-04 11:33:39.316 java[40650:1c303] *** -[NSConditionLock
> unlock]: lock ( '(null)') unlocked when not
> locked
> 2009-08-04 11:33:39.317 java[40650:1c303] *** Break on _NSLockError()
> to debug.
> 2009-08-04 11:33:39.418 java[40650:1c303] *** -[NSConditionLock
> unlock]: lock ( '(null)') unlocked when not
> locked
> 2009-08-04 11:33:39.419 java[40650:1c303] *** Break on _NSLockError()
> to debug.
> 2009-08-04 11:33:39.540 java[40650:1c303] *** -[NSConditionLock
> unlock]: lock ( '(null)') unlocked when not
> locked
> 2009-08-04 11:33:39.542 java[40650:1c303] *** Break on _NSLockError()
> to debug.
> 2009-08-04 11:33:40.757 java[40650:1c303] *** -[NSConditionLock
> unlock]: lock ( '(null)') unlocked when not
> locked
> 2009-08-04 11:33:40.757 java[40650:1c303] *** Break on _NSLockError()
> to debug.
> 2009-08-04 11:33:40.870 java[40650:1c303] *** -[NSConditionLock
> unlock]: lock ( '(null)') unlocked when not
> locked
> 2009-08-04 11:33:40.870 java[40650:1c303] *** Break on _NSLockError()
> to debug.
>
> The Swing window shows up but with a beachball running, so i can not
> click on it.
>
> Did someone face a similar issue? How did you work it around ?
>
> Thanks,
>
> Thomas

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to Google-Web-Toolkit@googlegroups.com
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~--~~~~--~~--~--~---



Re: oophm with the lastest eclipse plugin on Mac

2009-08-04 Thread miller

You can also try this page:
http://code.google.com/p/google-web-toolkit/wiki/OophmForMacBasedGwtContributors

On Aug 4, 1:39 pm, Masto  wrote:
> Hi there,
>
> i'm currently trying to make the oophm works on my Mac using eclipse
> 3.5 and the latest plugin. I use the revision 5873 of the trunk (ant
> clean then ant > my project refers to build/staging/gwt-mac-0.0.0/).
>
> Because i use gwt 2.0, a checkbox appears under Run Configuration >
> GWT Tab > just under the URL. So i checked it.
>
> The logs show that :
>
> 2009-08-04 11:33:30.967 java[40650:80f] [Java CocoaComponent
> compatibility mode]: Enabled
> 2009-08-04 11:33:30.969 java[40650:80f] [Java CocoaComponent
> compatibility mode]: Setting timeout for SWT to 0.10
> 2009-08-04 11:33:34.458 java[40650:1c303] *** -[NSConditionLock
> unlock]: lock ( '(null)') unlocked when not
> locked
> 2009-08-04 11:33:34.459 java[40650:1c303] *** Break on _NSLockError()
> to debug.
> 2009-08-04 11:33:34.673 java[40650:1c303] *** -[NSConditionLock
> unlock]: lock ( '(null)') unlocked when not
> locked
> 2009-08-04 11:33:34.674 java[40650:1c303] *** Break on _NSLockError()
> to debug.
> 2009-08-04 11:33:34.775 java[40650:1c303] *** -[NSConditionLock
> unlock]: lock ( '(null)') unlocked when not
> locked
> 2009-08-04 11:33:34.775 java[40650:1c303] *** Break on _NSLockError()
> to debug.
> 2009-08-04 11:33:34.901 java[40650:1c303] *** -[NSConditionLock
> unlock]: lock ( '(null)') unlocked when not
> locked
> 2009-08-04 11:33:34.903 java[40650:1c303] *** Break on _NSLockError()
> to debug.
> 2009-08-04 11:33:38.207 java[40650:1c303] *** -[NSConditionLock
> unlock]: lock ( '(null)') unlocked when not
> locked
> 2009-08-04 11:33:38.208 java[40650:1c303] *** Break on _NSLockError()
> to debug.
> 2009-08-04 11:33:38.308 java[40650:1c303] *** -[NSConditionLock
> unlock]: lock ( '(null)') unlocked when not
> locked
> 2009-08-04 11:33:38.309 java[40650:1c303] *** Break on _NSLockError()
> to debug.
> 2009-08-04 11:33:38.445 java[40650:1c303] *** -[NSConditionLock
> unlock]: lock ( '(null)') unlocked when not
> locked
> 2009-08-04 11:33:38.445 java[40650:1c303] *** Break on _NSLockError()
> to debug.
> 2009-08-04 11:33:39.316 java[40650:1c303] *** -[NSConditionLock
> unlock]: lock ( '(null)') unlocked when not
> locked
> 2009-08-04 11:33:39.317 java[40650:1c303] *** Break on _NSLockError()
> to debug.
> 2009-08-04 11:33:39.418 java[40650:1c303] *** -[NSConditionLock
> unlock]: lock ( '(null)') unlocked when not
> locked
> 2009-08-04 11:33:39.419 java[40650:1c303] *** Break on _NSLockError()
> to debug.
> 2009-08-04 11:33:39.540 java[40650:1c303] *** -[NSConditionLock
> unlock]: lock ( '(null)') unlocked when not
> locked
> 2009-08-04 11:33:39.542 java[40650:1c303] *** Break on _NSLockError()
> to debug.
> 2009-08-04 11:33:40.757 java[40650:1c303] *** -[NSConditionLock
> unlock]: lock ( '(null)') unlocked when not
> locked
> 2009-08-04 11:33:40.757 java[40650:1c303] *** Break on _NSLockError()
> to debug.
> 2009-08-04 11:33:40.870 java[40650:1c303] *** -[NSConditionLock
> unlock]: lock ( '(null)') unlocked when not
> locked
> 2009-08-04 11:33:40.870 java[40650:1c303] *** Break on _NSLockError()
> to debug.
>
> The Swing window shows up but with a beachball running, so i can not
> click on it.
>
> Did someone face a similar issue? How did you work it around ?
>
> Thanks,
>
> Thomas

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to Google-Web-Toolkit@googlegroups.com
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~--~~~~--~~--~--~---



IE7 clipping GWT content

2009-03-18 Thread burton miller

I have a situation where my GWT app is embedded in divs in a web page,
and I'm experiencing bizarre clipping behavior in IE7.

In IE7, when the browser is resized HORIZONTALLY smaller than the
region containing GWT widgets, then the GWT parts of the display are
clipped to the size of the window.  The regular html parts of the page
display normally.

This is apparent only when you scroll to the right.  If you resize the
window in this situation, the clipped area expands to the right in
real time.

This does not happen on other browsers, and no combination of html
doctype or quirks mode seems to help.  And I have replicated this on
several machines, so it is a consistent behavior.

This is a massive GWT app that is already in production - so any help
is welcome!
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to Google-Web-Toolkit@googlegroups.com
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~--~~~~--~~--~--~---



anchors inside HTML widget

2008-10-24 Thread burton miller

i'm having trouble getting anchors to work inside an HTML widget.

if i have a large chunk of html inside an HTML widget, can i use
internal anchors to navigate inside it?  what about if the HTML widget
is inside a ScrollPanel?

i can't seem to get it working.  seems like the hrefs don't escape
properly no matter what i try...

here is some dopey sample html that could demonstrate navigation:


tag1
tag2
tag3
tag4
tag5
tag6


tag1
 111
 111
 111
 111
 111
 111
 111
 111
 111
 111
tag2
 222
 222
 222
 222
 222
 222
 222
 222
 222
 222
tag3
 333
 333
 333
 333
 333
 333
 333
 333
 333
 333
tag4
 444
 444
 444
 444
 444
 444
 444
 444
 444
tag5
 555
 555
 555
 555
 555
 555
 555
 555
 555
 555
tag6
 666
 666
 666
 666
 666
 666
 666
 666
 666
 666


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to Google-Web-Toolkit@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~--~~~~--~~--~--~---