Re: Using MVP + Google Maps for GWT API

2009-07-16 Thread Norman Maurer
Hi David, I just had a look on the GettingStarted, but Its still not 100% clear to me howto handle more then one view/presenter. How would you handle more complex views which include other view and complex presenters which include other presenters? Thx for any help, Norman 2009/7/15 David

Re: UnsatisfiedLinkError

2009-07-16 Thread Dalla
Hi Lumo, Are you doing this on the server side? You cannot use any Maps API functions or types on the server side, they are client side only. --Dalla http://date-time.appspot.com/ On 15 Juli, 10:25, lumo lumo2...@gmail.com wrote: Hi NG! i wrote a class where i create a new marker and want

GWT in iframe issue.

2009-07-16 Thread T
When embedding a GWT application in an iframe it looks like some of the functions expected by widgets (like the absolute panel) don't work. For example, the DOMImplMozilla.class overrides the DOMImpl.class (which just returns 0) as follows: @Override public native int getBodyOffsetLeft(Document

GWT 1.7 on Maven central repo

2009-07-16 Thread buzo
Hi there: my apologies if this is the wrong place to ask for this: can somebody from the GWT team publish the GWT 1.7 jar files to the central maven repository at http://mirrors.ibiblio.org/pub/mirrors/maven2/com/google/gwt/ ? I found that the latest set of available jars are for 1.6.4. Thanks

Re: ImageBundle use question

2009-07-16 Thread GWTSmart
This question comes often as many people want to serve images dynamically from a database. Would like to share details of your solution ? On Jul 12, 9:49 pm, Dean S. Jones deansjo...@gmail.com wrote: I had the same issue once, had to do image lookup by name - I ended up creating an Interface

how to inherit external module jxl ? Problems working with excel sheets

2009-07-16 Thread sly
I'm new to gwt and have been working on a project which works with excel sheets. I need to read an excel sheet and use that data in my application. I have included the jar found in this url in the build path http://jexcelapi.sourceforge.net/ . I'm developing on eclipse. When I run the project as

Re: Does GWT 1.7 support Class.getSimpleName()?

2009-07-16 Thread lumo
if not [code] public String getSimpleClassName() { String className = this.getClass().getName(); return className.substring( className.lastIndexOf(.) + 1, className.length()); } [/code] 2009/7/15 Pandaman p4nda...@gmail.com Does GWT 1.7 support

Re: UnsatisfiedLinkError

2009-07-16 Thread lumo
no, i do not have any code running on the server. all i got is a google map and some javascripts in the browser (all written in google-gwt google maps api) 2009/7/16 Dalla dalla_man...@hotmail.com Hi Lumo, Are you doing this on the server side? You cannot use any Maps API functions or

BUG and Question?

2009-07-16 Thread lumo
Hi NG! @BUG when i create a new InfoWindowContent to fill in some informations for a marker i noticed the following: when in IEx all fine, when in FF3.5 (do not have an elder version but i guess its the same) IE8 displays: ID:1234 site sitename longitude: 11.38827 latitude: 47.25424

Re: BUG and Question?

2009-07-16 Thread lumo
shame on me! was a bug, but in MY code! both resolved. --~--~-~--~~~---~--~~ 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

Re: javascript in war folder not included after building war file

2009-07-16 Thread Marko Vuksanovic
Well I really doubt that is the problem - The problem is only with the extjs libraray (which is located in the ext folder) - all other librarys and folders get copied. At the moment, I have bypassed the problem by creating an ant script and specifying a target which copies the ext folder to the

Web Mode problem (linux + FF3.5)

2009-07-16 Thread matthieu vidal
Hi It was working and suddenly it's drive me crazy (GWT 1.7 with Google Plugin) it's working fine in hosted mode but suddenly in Web Mode with FF3.5 I have this strange Exception when running : com.google.gwt.core.client.JavaScriptException (TypeError): f is null fileName ... I don't know

Re: PHP programmer - is GWT for me?

2009-07-16 Thread Дмитрий Николаев
First question you must aks yourself: Whats benefits give GWT at in JS at all ? And the answer is: static typing language for JavaScript (producing). Do you trust in static typing ? :-) It is matter if you practice: Tdd/Unit testing Source refactoring Less error prone code (through static

Re: Fade animation with IE opacity doesn't work....

2009-07-16 Thread Ed
Thanks Adam, wasn't aware of that, but it doesn't suprise me :( --~--~-~--~~~---~--~~ 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

Re: How to control or catch the action when the user click the reload button browser in web mode

2009-07-16 Thread mars1412
maybe Window.addWindowCloseListener() is what you are looking for. On Jul 15, 10:07 pm, ayo...@gmail.com ayo...@gmail.com wrote: Hi, Anybody know how can I control or catch the action when a user makes click in the reload button browser in web mode. Thanks.

Re: javascript in war folder not included after building war file

2009-07-16 Thread Thomas Broyer
On 15 juil, 09:06, Marko Vuksanovic markovuksano...@gmail.com wrote: Aren't these relative paths? They are relative URL references, but absolute paths: remove the leading slash: stylesheet src=js/ext/resources/css/ext-all.css / --~--~-~--~~~---~--~~ You

Re: Difference between TextBox.addChangeHandler() and TextBox.addValueChangeHandler()?

2009-07-16 Thread Chris
Thanks Thomas. Chris --~--~-~--~~~---~--~~ 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

Resize (height) of InfoWindow

2009-07-16 Thread lumo
Hello NG! i am changing the content of the InfoWindow (a textarea which changes the size if needed) so as the content changes, also the infoWindow would have to change its height. so if i increase the height of the textarea i would also need to increase the height of the window. how can i do

Re: UnsatisfiedLinkError

2009-07-16 Thread Dalla
Can you please post the entire funcion so we can have a look at it? --Dalla http://date-time.appspot.com/ On 16 Juli, 08:18, lumo lumo2...@gmail.com wrote: no, i do not have any code running on the server. all i got is a google map and some javascripts in the browser (all written in

Re: UnsatisfiedLinkError

2009-07-16 Thread lumo
i doubt that this will help much but... public String toBioMarker() { String jsResultclass = dataString.substring(0, dataString.indexOf({)); String classData = dataString.substring(dataString.indexOf({) + 1, dataString.length() - 1); String[]

Re: detecting images that fail to load using image.addLoadHandler

2009-07-16 Thread brett.wooldridge
I don't think you need to force a unique URL. Receiving an image from the cache can be problematic on some browsers wrt events, but this has always worked for me (on all browsers I've tested)... final Image img = new Image(); img.addLoadHandler(...); img.addErrorHandler(...); panel.add(img);

Re: detecting images that fail to load using image.addLoadHandler

2009-07-16 Thread brett.wooldridge
One thing to note, if the image is put into an element that has style display:none, events will not fire on IE. In my app, I actually want to load images but not display them until they are fully loaded. To accomplish this (across all browsers), I first load the image in a 1x1 pixel DIV that

Re: gwt linux 1.5.3 oophm?

2009-07-16 Thread kojot
I've got my GWT trunk up and running with OOPHM, by following instructions on wiki and googling, here is the short description of what I did: http://makeapp.blogspot.com/2009/06/how-to-build-google-web-toolkit-and-use.html I've also managed to compile the the firefox plugin with unlocked FF

Re: Using MVP + Google Maps for GWT API

2009-07-16 Thread David Peterson
Yeah, need to document that also. There are a couple of approaches. Option 1, you have a 'RootPresenter' which has 'ChildPresenter' values injected into it, which it then builds its own UI based on the getDisplay().getWidget() value for each. I'll see if I can document an example. But briefly,

Re: Command Pattern, MVP, EventBus

2009-07-16 Thread David Peterson
Hi Alejandro, Firstly, you can absolutely do it using the same EventBus. I just don't think it's that great a fit, personally. But if what you have works, use it :) Thinking further, I think it's better to separate the EventBus from the Command system somewhat. The reason being that

Re: Spring4gwt - fresh approach at Spring/GWT integration

2009-07-16 Thread Istvan Soos
Hi Dustin, Interesting approach, it looks good. Just recently I've blogged about a very similar approach here: http://oktech.hu/blog/2009/07/spring-gwt-integration-with-ease.html It is not as polished as yours (especially in the documentation part), but a few idea might be interesting for you:

Re: Web Mode problem (linux + FF3.5)

2009-07-16 Thread matthieu vidal
Don't ask me what I have done but now I have a problem with a file called g !!! com.google.gwt.core.client.JavaScriptException (TypeError): g is null fileName: http://localhost:8080/dewatcher/EA7F6AC8052D172CCE58E52CC36344BC.cache.html ^_^ maybe at z the problem will disapear.

Re: Web Mode problem (linux + FF3.5)

2009-07-16 Thread george9
you may try to enable pretty-print JS translator output in Eclipse/ Google settings, then look at the problem with Firebug, then file a GWT bug.. also if you use any 3rd party modules/frameworks for GWT, check their compatibility with GWT 1.7 - for example GXT 2.0 is not fully compatible. On

Re: Command Pattern, MVP, EventBus

2009-07-16 Thread Daniel Jue
Alejandro's source code is here: http://code.google.com/p/puntosoft/ Anyway, there are ways to do it of course. I'll be interested to see your solution if you make it public :) --~--~-~--~~~---~--~~ You received this message because you are subscribed to the

Keyboard arrow keys navigation in FixedWidthGrid/Grid

2009-07-16 Thread Suren
Dear All, I am using FixedWidthGrid from com.google.gwt.gen2.table.client for data population. I want to have cell navigation facility using arrow keys in keyboard. Currently only the scrollbar is getting action when I use these keys. I need to change the functionality when I clicked on any

Re: Copying from Result Set to Array List

2009-07-16 Thread Sean
In all places you reference your callback, including the Async Interface, make it's AsyncCallbackArrayListString callback and NOT: AsyncCallbackString callback On Jul 15, 6:52 pm, Chad chad...@gmail.com wrote: Well, just that. The code you originally posted showed you trying to

Re: clear.cache.gif missing from all IEs

2009-07-16 Thread Charlie M
I have worked out my problem. It was an IE cache issue. It was putting the clear.cache.gif in correctly. Charlie M --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group,

Re: Web Mode problem (linux + FF3.5)

2009-07-16 Thread matthieu vidal
Hi, thanks for your advice. it's not easy to understand but firebug gives me the right clue. The problem is about using setCellWidth method before the add method : panel.setCellWidth(lblText, IConstant.LBL_TEXT_WIDTH); panel.add(lblText); The

Re: Does GWT 1.7 support Class.getSimpleName()?

2009-07-16 Thread Pandaman
But that is for GWT 1.6, I already know what this supports. On Jul 16, 1:38 am, Adam T adam.t...@gmail.com wrote: GWT supports the following:http://code.google.com/webtoolkit/doc/1.6/RefJreEmulation.html //Adam On 15 Juli, 19:00, Pandaman p4nda...@gmail.com wrote: Does GWT 1.7 support

Re: Does GWT 1.7 support Class.getSimpleName()?

2009-07-16 Thread Pandaman
Yeah I know about this implementation, but I would like to use a library function... I guess I can compromise until it's supported, just wondering if the newer version of GWT supports Class.getSimpleName () Thanks though. On Jul 16, 1:08 am, lumo lumo2...@gmail.com wrote: if not [code]    

Mule and GWT using JServer

2009-07-16 Thread Rauf
For more detail on building GWT applications for SOA and for job scheduling and processing environments. http://grandlogic.blogspot.com/2009/06/jserver-260-beta-released-packed-with.html --~--~-~--~~~---~--~~ You received this message because you are subscribed to

Re: UnsatisfiedLinkError

2009-07-16 Thread Eric Ayers
The source helps a little bit, in that this call happens to be your first reference to the Maps API in these methods. - What version of GWT are you using? - I assume you get the link error in hosted mode. Are you using HostedMode, GWTShell, (are you trying to use OOPHM as your hosted mode

Re: Clover code coverage

2009-07-16 Thread Arthur Kalmenson
Is no one using Clover? -- Arthur Kalmenson On Tue, Jul 7, 2009 at 9:50 AM, Arthur Kalmensonarthur.k...@gmail.com wrote: Hello everyone, We're currently using Clover for our code coverage tool and I've been wanting to get code coverage from GWTTestCases. We try to avoid using GWTTestCase

Re: Copying from Result Set to Array List

2009-07-16 Thread Rahul
Hi, Thanks for the reply. I have changed the following things you asked me to do. This is the code of my onSuceess Method public void onSuccess(ArrayListString result) { // TODO Auto-generated method stub

GWT 1.5 End of Support

2009-07-16 Thread Kady
When does the support/maintenace for GWT 1.5 officially end? Now that GWT 1.6 and 1.7 are already released, the end of support date might be a key piece of information in the selection of the framework version. Thank you, Kaushik --~--~-~--~~~---~--~~ You received

Re: gwt linux 1.5.3 oophm?

2009-07-16 Thread Jeff Chimene
On Wed, Jul 15, 2009 at 10:55 PM, Ken Kwasnickiken.kwasni...@gmail.com wrote: Hey Jeff, thanks again!  so, i think i'm close but still no cigar.  i grabbed the latest snapshot build (snapshot-2009.07.07-r5687) and that built fine. installed the gwt-linux bz2, rebuilt the entire project, then

Re: Copying from Result Set to Array List

2009-07-16 Thread Sean
You can simplify that a lot by just doing: String firstResult = result.get(0); You have a lot of conversions that are uncessceary. But judging by the error you're str has no elements in it. What you want to check is result.size() 0 On Jul 16, 10:05 am, Rahul coolrahul18...@gmail.com wrote:

Re: Adding Existing WIdget to new Element disables Event Handlers

2009-07-16 Thread mel
Thanks Thomas. I looked at SimplePanel and realized that I could created a subclass of SimplePanel with a constructor that takes an element (in my case a FIELDSET element). code class Fielset extends SimplePanel { public Fielset(Element fieldset, Widget w) { super(fieldset);

Re: Adding Existing WIdget to new Element disables Event Handlers

2009-07-16 Thread mel
Yes it does work. Apparently there was a problem with the flex table t (not shown in the above code). If I add the fieldset widget directly to the rootpanel it works fine thus: code final Button b = new Button(Click Me); b.addClickHandler(new ClickHandler() { public void

Re: Adding Existing WIdget to new Element disables Event Handlers

2009-07-16 Thread mel
My final Fieldset widget looks like so: code class Fielset extends SimplePanel { public Fielset(String as_legend, Widget w) { super(DOM.createFieldSet()); Element fset = this.getContainerElement(); Element leg = DOM.createLegend();

Re: Copying from Result Set to Array List

2009-07-16 Thread Rahul
hi thanks a lot you guys its started working :) On Jul 16, 10:42 am, Sean slough...@gmail.com wrote: You can simplify that a lot by just doing: String firstResult = result.get(0); You have a lot of conversions that are uncessceary. But judging by the error you're str has no elements in it.

Re: gwt linux 1.5.3 oophm?

2009-07-16 Thread Thad
When will there be an OOPHM plug-in for Firefox 3.5? I used OOPHM with GWT 1.5 and greatly preferred it to hosted mode. However early on I started having problems with OOPHM from the 1.6 trunk, and eventually gave up on it. Even with a clean build, projects would often not run (SuSE 10.3, J2SE

Compile error when creating global Javascript functions in JSNI?

2009-07-16 Thread Jason Carver
I get a compile error when I try to create a Javascript function in the global namespace: public static native void sirLancelot() /*-{ var $wnd.isWitch = function (x){ return equalWeight(x, duck) }; }-*/; It says I'm missing ; before statement but I'm pretty sure that's valid

Re: Compile error when creating global Javascript functions in JSNI?

2009-07-16 Thread Carver
Don't know why this took me so long to figure out. I just remove the var and it works, I think, like: public static native void sirLancelot() /*-{ $wnd.isWitch = function (x){ return equalWeight(x, duck) }; }-*/; On Jul 16, 11:50 am, Jason Carver jason.car...@gmail.com wrote:

Re: Does GWT 1.7 support Class.getSimpleName()?

2009-07-16 Thread Pandaman
Apparently not. http://stackoverflow.com/questions/1132692/does-gwt-1-7-have-support-for-class-getsimplename On Jul 15, 1:00 pm, Pandaman p4nda...@gmail.com wrote: Does GWT 1.7 support Class.getSimpleName()? --~--~-~--~~~---~--~~ You received this message because

Re: Position of cursor

2009-07-16 Thread Carver
Here is a class for tracking mouse position. I haven't done the testing, but I'd guess it has a significant performance penalty. Every mouse movement triggers many extra operations, now. Hopefully it at least gets you started, though! //Copyright (c) 2009 Jason Carver, Slique //MIT License

Re: GWT 1.5 End of Support

2009-07-16 Thread Daniel Jue
What do you mean support? Seems like updates are provided on a monotonically increasing version number. i.e. the tags (1.4,1.5.x) are not revisited for updates/patches. You move on to the new version as you see fit and as your dependent libraries allow. On Thu, Jul 16, 2009 at 10:09 AM,

Re: GWT 1.5 End of Support

2009-07-16 Thread Kady
I understand what you say. My question was, at what point in time do they stop adding patches to the branch 1.5. ? As you mentioned, I could use 1.6 or 1.7; however, I would like to know if an issue with 1.5 is found, until when will the fixes be provided for it. Thank you. On Jul 16, 1:47 pm,

Re: GWT 1.5 End of Support

2009-07-16 Thread Daniel Jue
Sorry, what I was trying to say is that I don't think they go back and add fixes to the previous versions. Any improvements or patches are included in the latest version number. There are a whole bunch of tickets listed as fixednotreleased which go into a planned future release. If you look at

IE 7 and 8 fails to load an empty module

2009-07-16 Thread Alexey
I've written an image gallery widget in GWT that uses floating div's to expand and move images along a horizontal axis in response to mouse movements. Everything works fine in Firefox, but IE refuses to load the module. It complains about the following in the bootstrap Gallery.nocache.js file:

launching Hosted mode with a web context

2009-07-16 Thread Alok
Hi How do I load my web module inside a web context instead of root context / Till 1.5 I used to put add a CTX.xml file under tomcat/conf/gwt/ localhost/ pointing to my web app. But with 1.6 and Jetty I am not sure how to do that. as there is jetty config folder created. JettyLauncher class has

Re: how to inherit external module jxl ? Problems working with excel sheets

2009-07-16 Thread Isaac Truett
After going through many of the threads here, I found out that the reason for this is that I have not inherited this module into my project. Where I am stuck right now is, HOW to INHERIT it ??? You can't, because it isn't a GWT module. The classes you're trying to use (java.io.File, for

Auto POST and set default file name FileUpload()

2009-07-16 Thread Pion
http://google-web-toolkit.googlecode.com/svn/javadoc/1.5/com/google/gwt/user/client/ui/FormPanel.html shows how to use FileUpload() using FormPanel(). I have the following questions: 1. FileUpload has getFilename() method. But I cannot find how to setu a default file name. Does

How to send a sms to mobiles in my GWT Application

2009-07-16 Thread Smilers
Hi All, I am working with a sample GWT application, here the logic is if any one of the user entered to a certain place i have to send a sms to the particular mobile that with a sms message that a user entered to your place. I got the logic that a user enters to a particular point, tell me

SmartGWT vs GWT-Ext Evaluation

2009-07-16 Thread Krishna Shasankar
Hi, I am currently evaluating an additional framework on top of GWT for extended UI requirements.I was looking at GWT-Ext, but later decided to look at SmartGWT. But I am concerned about the pricing, I am not sure if it is free opensource or not, although the website says there is a opensource

Convert a java project into a web project

2009-07-16 Thread Jordi
I have a java project and I want to convert it into a web project. Can I use GWT to do that? If I can could you tell me how? Thanks for your attention --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web

Re: JSP Compile Errors. Can't find compile error output

2009-07-16 Thread denizstij
As Rajeev pointed out, error message is there . org.apache.jasper.JasperException: Unable to compile class for JSP I had this issue with GWT 1.6.4 and now with 1.7. I added Tomcat Dependency libraries (Tomcat's/common/lib) to class path. And the issue is resolved. One important note: Tomcat's

Issue : Suggestion box takes time to load

2009-07-16 Thread rajibbaral
Hi, I am using GWT 1.6.4 . I have developed a front end wih user name / password for login. Post login I am displaying hyperlink upon click display a suggestion box for search role in a system. Now on the hyperlink, on a click event, I am writing my asynchronous method for role search. On the

Issue : Suggestion box takes time to load

2009-07-16 Thread rajibbaral
Hi, I am developing an application using GWT 1.6.4. So for my project I have the following client interface and classes. MyProject - onModuleLoad loading a suggest box MyProjectService - interface to define a method to get roles MyProjectServiceAsync - interface for the asynchronous method of

Re: GWT Map - Error Closing InfoWindow [Hosted Mode]

2009-07-16 Thread alixeb
Thanks for that ... Hmm not sure I want to carry on with GWT. I much prefer coding in JavaScript. Oh well I tried a bit, lol Cheers On 15 juil, 19:37, Eric Ayers zun...@google.com wrote: I'm guessing that what's happening here is that the MapClickHandler is getting in the way of closing the

select text

2009-07-16 Thread Wim
Hi everybody, Is it possible to get the selected text from a Label? Everyting I read involves textarea. But I want to get the seleceted text from a Label. I've already tried it with a native methode that gets the selected text from the document. But this returns a empty String. Greetings and

Start GWT with Eclipse : NoClassDefFoundError

2009-07-16 Thread braverju
Please, help. I have biult a GWT project using Eclipse on my old computer (Mac). Now, I want to open and run it on my new PC. I tried to do it with Eclipse Galileo (3.5) - no success. Then, I thought it might be easier with Eclipse Ganymed (3.4). I copied all gwt libraries for windows. But I keep

Problems creating new WebApplication using Eclipse GWT plugin

2009-07-16 Thread braverju
Dear friends, I have installed WebApplication plug in to my Eclipse. However, when I try to create a new application I get the error message. Her is what I get in my error log. Thank you. I would appreciate your help so much! !ENTRY org.eclipse.jdt.ui 4 10001 2009-07-16 10:51:06.119 !MESSAGE

Re: Eclipse Plugin and documentation of older versions of GWT

2009-07-16 Thread Bruno
On Jul 15, 2:34 pm, Miguel Méndez mmen...@google.com wrote: You should be able to access older versions of the GWT doc via:http://code.google.com/webtoolkit/previousdocs.html. Thanks, I should have noticed the link in the menu indeed, sorry. By the way, the link on

Re: GWT URL Parameters

2009-07-16 Thread KevMo
Thanks Max, I did find that post earlier, however since there is a built in way of getting URL parameters I thought there would also be a built in way of setting them. That post suggests using the history to set the parameters, but then I would need to make my own functions to parse the history

Is there a way to talk to an embedded GWT application?

2009-07-16 Thread H T
Hi GWT experts, I have this task of embedding a GWT application inside a JSP application. Is there a way to communicate state information from the JSP - GWT application? For example, the JSP application wants to send the current time to the GWT application so that it can update one of its

Re: GWT Map - Error Closing InfoWindow [Hosted Mode]

2009-07-16 Thread Eric Ayers
Sorry it isn't working out. Just FYI, this particular behavior is inherited from the JavaScript Maps API, so you'll have to deal with the same thing if you re-code your logic in JavaScript On Thu, Jul 16, 2009 at 7:44 AM, alixebalixebhag...@gmail.com wrote: Thanks for that ... Hmm not sure I

Re: problem with hosted mode - gwt 1.6 code does not execute

2009-07-16 Thread denis56
was so far unable to solve it. does anyone know if OOPHM would run with 1.6 code? I would like to try it out this way, since it runs in browser On Jul 14, 5:54 pm, denis56 denis.ergashb...@gmail.com wrote: His, I am having a brain blackout with this hosted mode problem (GWT 1.6 code would

Re: Problems creating new WebApplication using Eclipse GWT plugin

2009-07-16 Thread Alex Rudnick
Hey braverju, Which version of Eclipse are you using? There was a thread earlier where some people were having a very similar problem -- maybe you're having the same one? http://groups.google.com/group/Google-Web-Toolkit/browse_thread/thread/e91e92617ab119c3/f5efabaa59fc7bdc Hopefully we can

Re: GWT 1.5 End of Support

2009-07-16 Thread Kady
Thank you Dan for the clarification. I was expecting the same as well. If any GWT dev could clarify this, it would be great. Thanks in advance! Kaushik On Jul 16, 2:11 pm, Daniel Jue teamp...@gmail.com wrote: Sorry, what I was trying to say is that I don't think they go back and add fixes to

Re: Start GWT with Eclipse : NoClassDefFoundError

2009-07-16 Thread Alex Rudnick
Hello, The Eclipse plugin should help make sure your class paths are set up right to launch your PC too, but it sounds like you're having trouble installing it? Which program gave you the error about http://download.eclipse.org/releases/ganymede ? Thanks! On Thu, Jul 16, 2009 at 9:56 AM,

Drag and Drop, how to differenciate a simple Click from Drag

2009-07-16 Thread Memo Sanchez
Hello, I am building this widget that must have Drag and Drop ( PickupDragController) and also a ClickListener, but when I added the Drag controller ( with .makeDragable) my widget doesn't listen the ClickListener anymore, odd enought when i hold ctrl and I click to the widget it does what it is

Re: SmartGWT vs GWT-Ext Evaluation

2009-07-16 Thread ckendrick
If you use the free version, you use RestDataSource as the starting point for integration. RestDataSource simply specifies XML or JSON messages to send and receive with your server; it is totally agnostic as to how your server is implemented (it could, for instance, be PHP).

Re: Is there a way to talk to an embedded GWT application?

2009-07-16 Thread T
From your JSP you can get to GWT via Javascript. See Calling a Java Method from Handwritten JavaScript here: http://code.google.com/docreader/#p=google-web-toolkit-doc-1-5s=google-web-toolkit-doc-1-5t=DevGuideJavaFromJavaScript On Jul 16, 10:31 am, H T hung@gmail.com wrote: Hi GWT

left nav widget on incubator docs page

2009-07-16 Thread Rob
Hi, I was looking at the incubator docs: http://code.google.com/docreader/#p=google-web-toolkit-incubator I like how that left nav tree can be toggled away. It's not quite the same as the CollapsiblePanel demo in the incubator. Is this is a widget in GWT that I missed? thanks, Rob

Re: Convert a java project into a web project

2009-07-16 Thread Daniel Wellman
It depends. What kind of application do you have now? Does it have a desktop GUI? Generally speaking you cannot simply use GWT to convert an existing project as-is into a web application. You'll need to use GWT to write a new user interface layer and determine what code should run on the

Re: Character encoding issue with my gadget

2009-07-16 Thread Andre Leger
I finally figured it out, It's actually an opensocial issue. The data being posted on an opensocial container is sanitized to prevent malicious code injection. Problem resolved by using: URL.encodeComponent(newText.getText()) URL.decodeComponent(text) Now I know :) Andre

Re: how to inherit external module jxl ? Problems working with excel sheets

2009-07-16 Thread sly
So is there no way for me to go ahead with using this module ? How else can I work with excel sheets ? Please do help me. My application needs to import an external excel sheet browsed in by the user and the data needs to be read and displayed using GWT. If anyone knows any working gwt

Rebinding with wrong generator class

2009-07-16 Thread Gary S
I added Gin modules to one of my GWT modules and now I get these failures. 2 GWT modules try to rebind the same class with 2 different generators and both are the wrong generators GWT module without Gin Compiling module org.kuali.student.lum.ui.requirements.Requirements Computing all possible

Handling Multiple Click Events

2009-07-16 Thread stymie
The following code does not work, what am I doing wrong?I have an array of buttons named myButtons. Thanks for(int i=0;i2;i++){ myButtons[i].addClickHandler(new ClickHandler(){ @Override public void

Server Side Includes (SSI) in hosted mode

2009-07-16 Thread Jim Culver
For SEO purposes I need to include html from one page into my main page using Server Side Includes (SSI). I have been unable to get this to work in hosted mode. I was wondering if any one else has done this and if they know how to set up the hosted mode server to do this? Any help would be

Re: SmartGWT vs GWT-Ext Evaluation

2009-07-16 Thread Daniel Jue
I am also evaluating SmartGWT after a brief stint with GXT. Regarding the GWTRPC code mentioned, it is now part of SmartGWT Extentions. If you are using maven, it's this: dependency groupIdcom.smartgwt/groupId

Re: UnsatisfiedLinkError

2009-07-16 Thread lumo
i am using Eclipse with: GooglePlugin for Eclipse 3.4 Google Web Toolkit SDK 1.7.0 i get WARNING: 'com.google.gwt.dev.GWTCompiler' is deprecated and will be removed in a future release. Use 'com.google.gwt.dev.Compiler' instead. every time i compile, but i did not find how to change to GWTShell.

RunTimeError accessing RichTextArea

2009-07-16 Thread David Given
I'm trying to get access to the inner document of a rich text editor. However, whenever I try, I get bizarre errors; it appears to be giving me bogus JavascriptObjects. For example: Element e = richtext.getElement(); String s = e.getTagName(); assert s.equals(IFRAME) /* passes */

Is it possible to set an onLoad event listener on an IFrameElement?

2009-07-16 Thread Jake
Hi all, I just have a quick question: I know that GWT presents a fairly low- level DOM API that wraps native DOM objects. What I'd like to do is create a new iframe element, and then set a DOM onLoad listener on it so that I can then manipulate the iframe's internal document (its

[gwt-contrib] Re: Comment on OophmForMacBasedGwtContributors in google-web-toolkit

2009-07-16 Thread brett.wooldridge
Will do. When the plugin finally lands, if you remember, post a note here or on the wiki. Much appreciated. Brett On Jul 16, 12:25 pm, codesite-nore...@google.com wrote: Comment by tamplinjohn: The WebKit code is current there (and I think IE as well), but that branch   does not contain

[gwt-contrib] Re: DOM#eventGetCurrentEvent returns null in UncaughtExceptionHandler

2009-07-16 Thread jgw
On 2009/07/13 17:24:59, jlabanca wrote: LGTM. http://gwt-code-reviews.appspot.com/51802 --~--~-~--~~~---~--~~ http://groups.google.com/group/Google-Web-Toolkit-Contributors -~--~~~~--~~--~--~---

[gwt-contrib] Re: Issue 3822: TextBox.getselectedText() : bug on IE

2009-07-16 Thread jgw
On 2009/07/13 15:44:37, jlabanca wrote: LGTM. http://gwt-code-reviews.appspot.com/52801 --~--~-~--~~~---~--~~ http://groups.google.com/group/Google-Web-Toolkit-Contributors -~--~~~~--~~--~--~---

[gwt-contrib] IE8 detection in GWT 1.7 clarification needed

2009-07-16 Thread stuckagain
Hello, I was trying out recompiling with GWT 1.7 to see if I could remove my hacks to disable the IFrame trick in dialogs and I noticed that it was still active. It looks like ie8 is only triggered if you use the HTML 4.01 strict mode. If I use the transitional doctype it falls back to ie6.

[gwt-contrib] Re: IE8 detection in GWT 1.7 clarification needed

2009-07-16 Thread Joel Webber
Oddly enough, that's correct. The lack of doctype, or an explicitly quirks doctype as below, always puts IE8 into compatibility mode, which is pretty much identical to IE7 -- so you get the ie6/7 compiled permutation, because the ie8 one wouldn't work at all. Another way of saying this is that

[gwt-contrib] Re: Moving PagingScrollTable Friends to Trunk

2009-07-16 Thread John LaBanca
We probably won't decide what to move into trunk until we get closer to the next release. I'm working on improving our unit test coverage to make GWT more stable, and most of the other UI developers are busy on their own tasks. Sorry I don't have a better answer, but I'll escalate the fact that

[gwt-contrib] [google-web-toolkit commit] r5740 - DOM#eventGetCurrentEvent() now returns the native event when called from an UncaughtExcep...

2009-07-16 Thread codesite-noreply
Author: jlaba...@google.com Date: Thu Jul 16 08:05:27 2009 New Revision: 5740 Modified: trunk/user/src/com/google/gwt/user/client/DOM.java trunk/user/test/com/google/gwt/user/client/ui/DOMTest.java Log: DOM#eventGetCurrentEvent() now returns the native event when called from an

[gwt-contrib] Re: Moving PagingScrollTable Friends to Trunk

2009-07-16 Thread Isaac Truett
Issue #188 has 40 stars, making it number seven in the issue list (when sorted appropriately). Let's shoot for number one before John gets back to working on it. ;-) So if you're anxious for PST to leave the incubator, star this issue:

[gwt-contrib] Re: IE8 detection in GWT 1.7 clarification needed

2009-07-16 Thread stuckagain
Joel, Glad to read that I am not totally going nuts. Unfortunately I need to support IE6,7 and 8... so using tables is currently inevitable. I'm curious to see your new layout support. David On Jul 16, 4:31 pm, Joel Webber j...@google.com wrote: Oddly enough, that's correct. The lack of

[gwt-contrib] Fix issue 3756: getRel() and setRel() in AnchorElement access the wrong JavaScript property

2009-07-16 Thread rice
Reviewers: jgw, Please review this at http://gwt-code-reviews.appspot.com/47818 Affected files: user/src/com/google/gwt/dom/client/AnchorElement.java Index: user/src/com/google/gwt/dom/client/AnchorElement.java === ---

  1   2   >