how can i inherit com.google.api.adwords API ???

2010-03-07 Thread Qais
am trying to use adword API in my GWT project but ...i have one problem (( No source code is available for type com.google.api.adwords.v13.Campaign; did you forget to inherit a required module? )) can anyone help me please??? thnx -- You received this message because you are subscribed to the

Re: JsonpRequestBuilder and inherits?

2010-03-07 Thread A. Kong
Seems like I have found out the answer myself I just need to add this line to the gwt.xml inherits name='com.google.gwt.jsonp.Jsonp'/ Cheers -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

Re: JsonpRequestBuilder and inherits?

2010-03-07 Thread خليل بولو
بلرغم انك موقع عربي او اميل عربي وتستخدم في النص المرسل غيرالعربيhttp://www.abuawad@gmail.comفي اللغة 2010/3/7 A. Kong anthony.hw.k...@gmail.com Seems like I have found out the answer myself I just need to add this line to the

Re: Creating nice forms using gwt

2010-03-07 Thread Gal Dolber
mm, lets see... pretty much all you got is (with uibinder) g:VerticalPanel g:HorizontalPanel g:LabelThis is the label/g:Label g:TextBox/g:TextBox g:Anchor[?]/g:Anchor /g:HorizontalPanel /g:VerticalPanel 2010/3/7 Vik vik@gmail.com Hie I know about using

Re: FileUpload widget trouble

2010-03-07 Thread BimboJones
Hi, Have you tried do the add(panel) after you assign the handlers? On 6 Mar, 19:20, Victor Llorens victor.llor...@gmail.com wrote: Hi all, I have a FileUpload and a Button in a GridPanel. Once Button is clicked I submit the form. Analyzing HTTP Traffic, I can see that Post data is void...

Re: Image getAltText() and setAltText()

2010-03-07 Thread Gal Dolber
Image i = new Image(...); i.getElement().setAttribute(alt, Your alternate text); String yourAlternateText = i.getElement().getAttribute(alt); 2010/3/6 PKolenic pkole...@gmail.com I found it a bit of a hassle also not having those methods. However I do much of my work with UiBinding, so I

Re: How do I retrieve localized messages on server side?

2010-03-07 Thread andreas
My previous answer did not appear in this discussion. So I try again: Hi, you can use Java's ResourceBundle: ResourceBundle.getBundle(resource, locale).getString(key) You can retrieve the locale from the request header or from a parameter in the request query (for example when you want the

Re: How do I retrieve localized messages on server side?

2010-03-07 Thread andreas
Hi, it is possible using the Java API: String text = ResourceBundle.getBundle(resource, locale).getString(key); where resource is the name of the .properties-file, locale is the locale of the user request key is the key of the message in the .properties-file You can retrieve the locale from the

Re: Supported Browsers

2010-03-07 Thread Ken
I know this was posted over a month ago, but I would like to revive the thread. I'm writing a proposal and I'm suggesting using GWT to implement the client's front end. I would like to be able to tell him exactly which browsers are supported and which aren't and if possible tell him exactly what

Adding the google maps showMore button to a Map

2010-03-07 Thread cyclingthealps
Hi there, I would like to add the showmorebutton to my map (MapWidget object) in GWT as is shown in this example: http://gmaps-utility-library-dev.googlecode.com/svn/trunk/extmaptypecontrol/examples/morebuttonexample.html Here is the link to the javascript code: Adding the More... Button

onFailure Throwable does not give any information

2010-03-07 Thread DK
Hi, We have a application on 1.4.6 which works fine on a dev servers. But the GWT-RPC call to the server fails in the Qa servers, We can see the implemented method running correctly. The Throwable onFailure does not give any information. Is there any way to debug this? Has any one seen this

Barchart data update and refresh (redraw) question on using gwt-ext

2010-03-07 Thread new_newbie
Hi, I am working on a vote widget which shows the vote by barchart. I have problem on refreshing, showing the new statistics, after the user click the yes button or no button. The constructor is doing it right. It is able to put up the initialize statistics. The problem is on redraw after the

Re: help required on MenuBar

2010-03-07 Thread zbr
thanks mibtar for your post, I've already tried the 'crude' way. I thought we can add images to the menuBar in a more elegant manner, using MenuBar(boolean vertical, MenuBar.Resources resources). It didn't work for me. thanks any way. zbr -- You received this message because you are

GWT 2.0.x and Maven

2010-03-07 Thread Steve
After a few days of confusion, I thought I'd ask here ... What are the parts and pieces I need to set up a GTW/Maven project? I've got Eclipse 3.5.2, m2eclipse 0.10, the beta GPE 1.3 plugin, what else? What's the sequence of events I need to do to get a working project going? Steve -- You

IE7 - StackLayoutPanel ( works fine in FF chrome )

2010-03-07 Thread Prashant Hegde
Hello , I have an app which works fine in Chrome FF, but facing a couple of issues in IE7. - I am using Standards Mode !DOCTYPE html - GWT 2.0.3 on Windows - I am using RootLayoutPanel Issues: 1. Whenever a popup (created using PopupPanel ) is displayed, the background goes blank (and

Re: Creating nice forms using gwt

2010-03-07 Thread Anoop John
Hey Vuk, You can use the method setStyleName(your css class name) corresponding to the widget. On Mar 7, 11:06 am, Vik vik@gmail.com wrote: Hie I want to create a form in gwt with exact look and feel ashttp://www.sakshum.com/ui/page/DonorRegister.jsp Is it possible?: If yes please

Re: FileUpload widget trouble

2010-03-07 Thread Víctor Llorens Vilella
Thanks Bimbo. I have tried it with no luck. I'm working with Chrome. For testing, I have tried with Firefox and ,well..., submit button is doing anything. Maybe is this widget buggy? I'm working, and may work with GWT 2.0.0. On 7 March 2010 16:51, BimboJones bimbojone...@gmail.com wrote:

How to emulate a class with field of type Object

2010-03-07 Thread Andrey
Hi GWT guru-s, I've got a class (which I cannot modify) with a field of java.lang.Object type. I want instances of this type to be avaliable at client. For that, I wrote GWT-emulated implementation and attached it with super-source. The problem is that GWT uses signature checking policy to ensure

Re: How to use com.google.gwt.dev.util.collect.HashMap

2010-03-07 Thread Gal Dolber
I think thats the override that make the magic when it compiles to javascript... 2010/3/2 Heidarzadeh heidarzad...@gmail.com Thank you Gal Dolber. But if I have to use java.util.HashMap! I can't understand why they have created com.google.gwt.dev.util.collect.HashMap !? What is the usage of

AsyncCallback Memory Leak

2010-03-07 Thread winhqwebm...@gmail.com
Hello, I am developing a small application that requires an AsyncCallback call every second. The following implementation generates a fairly considerable memory leak: public void onModuleLoad() { Timer t = new Timer() { public void run() {

Debugging gwt scripts deployed on Websphere and IBMHttpserver

2010-03-07 Thread myapplicationquestions
Hi All, Is it possible to debug GWT scripts deployed onto websphere? Thanks, -- 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

Re: AsyncCallback Memory Leak

2010-03-07 Thread winhqwebm...@gmail.com
I also forgot to mention that I am using Chrome for testing. On Mar 7, 5:00 pm, winhqwebm...@gmail.com winhqwebm...@gmail.com wrote: Hello, I am developing a small application that requires an AsyncCallback call every second. The following implementation generates a fairly considerable

Re: How to use com.google.gwt.dev.util.collect.HashMap

2010-03-07 Thread Jim Douglas
If you don't see it in the documentation, assume that it's an internal implementation detail, not something that you should be using from application code: http://google-web-toolkit.googlecode.com/svn/javadoc/2.0/index.html On Mar 1, 10:02 pm, Heidarzadeh heidarzad...@gmail.com wrote: Thank

Re: AsyncCallback Memory Leak

2010-03-07 Thread dolcra...@gmail.com
Does it still happen if you define the callback and assign it to a final variable and use it that way? On Mar 7, 5:00 pm, winhqwebm...@gmail.com winhqwebm...@gmail.com wrote: Hello, I am developing a small application that requires an AsyncCallback call every second. The following

tomcat and mysql problem

2010-03-07 Thread Fran
Hi, I have a problem with a tomcat and MySQL driver. If I use a tomcat instalation in Windows, it works fine. If I put the aplication in a production server (Linux centoos), It dont work. This is the output of catalina.out Mysql Connection Error:

Re: GWT 2.0.x and Maven

2010-03-07 Thread Ignat Alexeyenko
Hi, Steve! I'm using maven with GWT2.0 but I'm not using eclipse. Actually before every project launch my IDE calls 'package' target of maven lifecycle. You can view pom.xml file configuration sample. Follow the instructions to checkout the project:

Re: use of DefaultRule_0_1_n.class in @PluralCount annotations

2010-03-07 Thread cvarda
Anyone successfully change the PluralRule on @PluralCount? -- 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

Re: Specifying -bindAddress 0.0.0.0 with gwt-maven-plugin

2010-03-07 Thread Daniel
Nice one! To get it to work on my Windows machine I had to change the single quotes to double quotes. i.e. logLevelINFO -bindAddress 0.0.0.0 -logLevel INFO/logLevel On Mar 5, 7:22 pm, Filip Balejko filip.bale...@gmail.com wrote: While waiting for support from gwt-maven-plugin, you can use this

how can I add parameters in FileUpload

2010-03-07 Thread zujee
Hi, How can i add parameter in FileUpload in the formPanel. I successfully uploaded the file to server. But I want to pass some string values along with the uploadForm.submit(); . How can I do that. Thanks in advance zuje -- You received this message because you are subscribed to the Google

Re: Debugging gwt scripts deployed on Websphere and IBMHttpserver

2010-03-07 Thread Jan Ehrhardt
Debugging your GWT project in development (aka hosted) mode, allows you to specify an different server. You have to disable the internal server in the launch configuration and add a program argument -startupUrl http://address-of-my-host-page;. It is important, that the HTML loaded by this address

What happened to gwtquery integration?

2010-03-07 Thread cromoteca
Hi, in a Google I/O video it is mentioned that gwtquery is considered an excellent tool by the gwt dev crew, so much that they thought about integrating it into the main codebase. The video is http://code.google.com/intl/it-IT/events/io/2009/sessions/GwtPreviewGoogleWebToolkit2.html But not only

[gwt-contrib] Re: UIObject methods return type improvement.

2010-03-07 Thread Qcho
Thanks for your Reply Joel. Im happy to see this will be at leaset taken into consideration. I underestand your point of view. I think since this methods return nothing, maybe is not that problematic to implement a nice return. Only signature problems will occur on subclasses, nothing a simple

[gwt-contrib] RequestFactory prototype: Initial code that uses org.json lib on the server side

2010-03-07 Thread rjrjr
Reviewers: Ray Ryan, Description: Initial code that uses org.json lib on the server side, passes actual request parameters, plus integration with server side domain objects. patch by amitman...@google.com review by rj...@google.com Please review this at

[gwt-contrib] Re: RequestFactory prototype: Initial code that uses org.json lib on the server side

2010-03-07 Thread rjrjr
(I created this rietveld issue for you, so the reviewer field is a bit backwards — should be me.) http://gwt-code-reviews.appspot.com/160809/diff/1/2 File bikeshed/.classpath (right): http://gwt-code-reviews.appspot.com/160809/diff/1/2#newcode10 Line 10: classpathentry kind=lib

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

2010-03-07 Thread codesite-noreply
Comment by rj...@google.com: Given the goal of Collections must be able to be eval()-ed into existence from JSON, I hope their JRE counterparts will be able to serialize to JSON. For more information: http://code.google.com/p/google-web-toolkit/wiki/LightweightCollections --