Re: SplitLayoutPanel

2010-01-21 Thread julien.dram...@gmail.com
They create their own style :) But panel is usefull to layout your application (i.e. positionning your widget like you want) No css is really needed for panel and it's why they're not css defined in gwt themes. Now, if you want specific behaviour, do it yourself :) On Jan 12, 7:15 pm, Stine

Re: Using my own external jars

2010-01-21 Thread Juan M.M.M.
And what about RPC? Is this the solution, right? On 20 ene, 17:32, Eric erjab...@gmail.com wrote: On Jan 19, 4:59 pm, jfagh jfa...@gmail.com wrote: Juan, Also, you need to include both .java and .class files in your JAR. And the .java files must not reference any unsupported libraries

Re: Using my own external jars

2010-01-21 Thread Juan M.M.M.
And what about RPC? Is this the solution, right? On 20 ene, 17:32, Eric erjab...@gmail.com wrote: On Jan 19, 4:59 pm, jfagh jfa...@gmail.com wrote: Juan, Also, you need to include both .java and .class files in your JAR. And the .java files must not reference any unsupported libraries

Re: about the limitation of MVC

2010-01-21 Thread Alexander
So throw appropriate event to EventBus. All widgets what are interested in these events must be subscribed before. And here we go - without models our views could interact with each other. 2010/1/21 yucubby yu.cu...@126.com I only gives a very simple case. Thinking in a complex situation, if

Re: HandlerManager

2010-01-21 Thread Alexander
Place list and buttons in some container and monitor focus for container but not only list. 2010/1/20 PaulBee pauloabe...@gmail.com I want to implement a ListBox that has associated to it three buttons. But I only want the butons to show when the listbox is OnFOcus. Whenever the listbox is

Re: Using my own external jars

2010-01-21 Thread Juan M.M.M.
And what about RPC? Is this the solution, right? On 20 ene, 17:32, Eric erjab...@gmail.com wrote: On Jan 19, 4:59 pm, jfagh jfa...@gmail.com wrote: Juan, Also, you need to include both .java and .class files in your JAR. And the .java files must not reference any unsupported libraries

Re: What causes com.google.gwt.core.client.JavaScriptException, and how to trace it?

2010-01-21 Thread John V Denley
I have a similar problem with a compiled GWT javascript, but it only fails in IE. Im not sure where in eclipse to set style=DETAILED and even if I did, is there a firebug dev tool for debugging javascript in IE? I dont mind taking some time to figure out how to set the style=DETAILED, but only

GAE: Request was aborted...

2010-01-21 Thread Alex Okunevich
Hi It's possible to catch this problem: Request was aborted after waiting too long to attempt to service your request. Most likely, this indicates that you have reached your simultaneous dynamic request limit. This is almost always due to excessively high latency in your app. ? -- You received

Eclipse Plugin Wizard for Events

2010-01-21 Thread Eric
I was trying to create an application-level logical event class, and I realized that the plugin could provide a wizard to create the class and its associated handler. Since this task invariably requires the author to create three related Java files, and since most of the code is boilerplate, a

On secure logins

2010-01-21 Thread FKereki
Hi! I was just checking the consensus on how to do a secure login and it seems to be along the lines of: * set a simple login application to run at https://your.own.site.com/login * set the rest of your application to run at http://your.own.site.com/main * if the user tries to directly go to

On mixing https: and http:

2010-01-21 Thread FKereki
I was thinking about implementing a cart in GWT, and I am looking at the problem of mixing http: (for browsing, selecting, etc.) and https: (for the final part of the sale). I can see a way out by having the application run at a http:// URL, then redirecting the application to a https:// URL to do

Re: What causes com.google.gwt.core.client.JavaScriptException, and how to trace it?

2010-01-21 Thread Joe Cole
This can happen in devmode. I found one today - it was an exception in a deferred command while manipulating an xml document. To debug in devmode is relatively easy - simply debug before it breaks and step through. In web mode I have encountered a few of these as well. Here is our approach: 1.

Re: Seamlessly Integrating GWT and Gears

2010-01-21 Thread Joe Cole
We use this with our air project, which uses gwt-in-the-air. It's a great project I recommend checking it out. Basically we have a service manager that you can register online services and offline services. Both use Async options. When we are working offline, we just switch which services we

GWT + Eclipse doesn't work. Attempted to beginRule: R/, does not match outer scope rule

2010-01-21 Thread MaEcTPo
Hi, I have a trouble with Eclipse and GWT. My GWT projects don't work. All of them. They compile, but don't run in hosted mode. When I start Eclipse I receive popup with error. In eclipse error log I have this: java.lang.IllegalArgumentException: Attempted to beginRule: R/, does not match outer

Re: On secure logins

2010-01-21 Thread ailinykh
By this way you secure the main page only. What is pretty much useless. All client/server communication is done through AJAX. You can't secure it by a traditional servlet filter, because GWT serialization doesn't know anything about redirect. You will have something like serialization Exception.

Re: Problem switching to GWT 2.0 from GWT 1.6 (mysql related I think)

2010-01-21 Thread Shawn Brown
Hello, Did you find the solution? There is none. AppEngine doesn't support using mysql and so it was throwing an error. Unless AppEngine adds mysql support I don't see anything that can be done. Use the storage api offered by AppEngine. Shawn -- You received this message because you are

Re: What causes com.google.gwt.core.client.JavaScriptException, and how to trace it?

2010-01-21 Thread dduck
Well, using Safari I can now spot the place where the exception is thrown in the generated JavaScript, but I have no way to relate that to the Java code that I put into the GWT compiler. Any clues as to how I do that? Regard, Anders -- You received this message because you are subscribed to

Re: On secure logins

2010-01-21 Thread Alexander
+1 I do always authorise user action at services. I cant find out any other solution. 2010/1/21 ailinykh ailin...@gmail.com By this way you secure the main page only. What is pretty much useless. All client/server communication is done through AJAX. You can't secure it by a traditional

Re: gwt-servlet.jar being deleted at each Eclipse startup after upgrading to gwt 2.0

2010-01-21 Thread Supercobra Thatbytes
I have the same problem. This triggers a CVS / SVN check-in / update process that is unnecessary (and long). On Jan 20, 11:05 am, Erik Uzureau uzur...@gmail.com wrote: Yes, this does seem to be a good workaround. I can't, however, convince anyone on my team to use it, because: 1) Not all

Dynamic List box problem

2010-01-21 Thread a_martinez
Hi, I managed to fill a ListBox onClick with entries. Unfortunately the ListBox expands before onClick is catched (before data is reloaded). Therefore the user has to click a scond time after the entries are loaded. Is there a way to force a ListBox to NOT expand when clicking on it? And is there

Re: Eclipse Plugin Wizard for Events

2010-01-21 Thread Isaac Truett
Eric, You might like to star issue #3914. http://code.google.com/p/google-web-toolkit/issues/detail?id=3914 - Isaac On Thu, Jan 21, 2010 at 7:13 AM, Eric erjab...@gmail.com wrote: I was trying to create an application-level logical event class, and I realized that the plugin could provide a

Re: DockLayoutPanel layout problem with south and UiBinder

2010-01-21 Thread Richard Berger
I am using a DockLayoutPanel with UiBinder and it seems to work fine. However, I can't see any real difference between your code and mine. My ordering is different - I have north, center, west, then south. Also, my center panel has a size. Sorry to not have anything more useful for you. RB On

Re: What causes com.google.gwt.core.client.JavaScriptException, and how to trace it?

2010-01-21 Thread John V Denley
I finally bit the bullet, and started commenting out huge chunks of my code, and running the application to see if that got rid of the problem... After a few hours of this, I finally narrowed it down to the following (and similar) line of code: daygrid.getColumnFormatter().setWidth(col, 0px);

Re: javascript error (invalid Argument)

2010-01-21 Thread John V Denley
I finally bit the bullet, and started commenting out huge chunks of my code, and running the application to see if that got rid of the problem... After a few hours of this, I finally narrowed it down to the following (and similar) line of code: daygrid.getColumnFormatter().setWidth(col, 0px);

problem in web mode for deploying.zipped file to db.

2010-01-21 Thread saurav
hi All, i am facing a serious problem. i am able to deploy .zipped file in gwt in hosted mode to my database successfully. but when i try to do that in web mode i am unable to do it. kindly help. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit

MVP and tabs :)

2010-01-21 Thread Stine
Hello :) I am still struggling with learning best practice in creating my GWT application ;) At the moment I am trying to apply the MVP design pattern described in http://code.google.com/webtoolkit/doc/latest/tutorial/mvp-architecture.html... I imagine that my UI will be a tab panel where each

Re: Urgent help in GWT-Visualization

2010-01-21 Thread Brij Mohan
try out the faq http://code.google.com/docreader/#p=gwt-google-apiss=gwt-google-apist=VisualizationFAQ On Tue, Jan 19, 2010 at 4:37 PM, Ramya Devi Dharmarajan dramyadevi2...@gmail.com wrote: Hi, I have a problem in my below code.Please share your thoughts.This is Urgent. Code :

Building a Calendar Widget like Google Calendar with GWT advisable?

2010-01-21 Thread mstu...@googlemail.com
Hi All, I am quite new to GWT and currently evaluating this technology. For a project I need to build an application containing a calendar such as Google Calendar where the user can create and move events around. The SmartGWT lib contains a Calendar Widget but I want to build my own due to

Re: Problem with deploy gadget on iGoogle

2010-01-21 Thread KeremTiryaki
I think you should check this article http://code.google.com/webtoolkit/doc/latest/tutorial/Xsite.html. Your problem may be about ajax request security (it is defined here https://developer.mozilla.org/En/HTTP_access_control ) On Jan 20, 10:58 pm, Vitaly Parfonov vitaly.parfo...@exoplatform.com

Link External (xerces jars ) to GWT application in Eclipse

2010-01-21 Thread nikki
I am new to GWT and am building an application using some external jars such as xerces ,inspite of adding the jar files in the lib folder I get the error the import org.3wc cannot be resolved can someone please tell me if there is another way to include the jar files in a GWT application

how to set pagination or add scroll bar to the TabBar of an TabPanel

2010-01-21 Thread blopes
Hi! I would like to add some kind of slide items to the TabPanel TabBar . I am adding dynamically labels to the tab and when the length of all added labels is greater than the tab width the symbol less() and greater() should appear in each side to be able to scroll left and right. Or instead of

GWT development process

2010-01-21 Thread Artem
I'm rather new in GWT and maybe I'm asking something really easy and well-known, but I'm not able to find solution myself, so I really hope you can help me... I really like GWT but can't find a way to integrate in to our development process. We tried to do it as usual - we created cool HTML and

Compiling error with grails gwt

2010-01-21 Thread ricardo
Requisites instaled: - GWT 2.0 - Grails 1.1.1 - grails-gwt-plugin 0.4.1 - java 1.6.07 Phases: - Create grails project. Ok - Install gwt plugin. Ok - Generate Gwt clas. Ok - Asign the class to a gsp. Ok - Compile gwt modules or run-app. Error: I try to compile my grails

Re: Maven users survey

2010-01-21 Thread Eelco Hillenius
6. In eclipse we just start Debug as Web application. (with all libraries manually copied into war/WEB-INF/lib) This is our main problem, and I don't think it is related to only maven builds. Instead of using the project's class path including references to other projects and external jars

Client did not send n bytes as expected

2010-01-21 Thread Vishal
We get this error: [#|2009-08-12T11:38:31.803-0700|SEVERE|sun-appserver9.1| javax.enterprise.system.container.web| _ThreadID=16;_ThreadName=httpSSLWorkerThread-38080-3;_RequestID=8b3571bb-3c36-43f1-9e38-6947ca376436;| WebModule[]Exception while dispatching incoming RPC call

GWT-RPC-MAIL

2010-01-21 Thread Florentine3D
I realized GWT-RPC. Everything works. When I click on the button I get a message from the server and print on the web browser. Question: How do I send mail using JavaMail with that simple button? I do not know how to write code. On the Internet I found only bits of how to do it and do not

Internet Explorer 8 and ActiveX object

2010-01-21 Thread CB
Hi, I have a problem with Internet Explorer 8 (both on Vista and Windows 7) and an AcitveX object. Running the following plain javascript displays a test alert message in the browser when loaded in Internet Explorer 8: ... script type=text/javascript var myActiveXObject = new

Building GWT based application in a comfortable way with buildr (instead of Ant or Maven)

2010-01-21 Thread Sebastian
Hello, I am using buildr for compiling, building and packaging. I would like to share the build script, I am using for my GWT project. http://buildr.apache.org The build script is somewhat lengthy as compared to normal buildr scripts as I haven't defined a buildr extension for the gwt compiling.

Re: On secure logins

2010-01-21 Thread olivier nouguier
Hi all, I've implemented some integration of Spring Security and GWT. It is exactly the process described by Andrey: * http://code.google.com/p/net-orcades-spring/ is using pattern (URL filtering). * http://code.google.com/p/orcades-gwt-spring/ is using MVP pattern with secured at method level.

Re: Code coverage for GWT

2010-01-21 Thread Arthur Kalmenson
AFAIK only Emma currently covers GWTTestCases. We use it with Sonar and it works well. All the best, -- Arthur Kalmenson On Tue, Nov 24, 2009 at 12:38 AM, Feldman, Nir nir.feld...@hp.com wrote: Do both fully support GWT (including coverage for GWTTestCase)? *From:* davisf...@gmail.com

Re: What causes com.google.gwt.core.client.JavaScriptException, and how to trace it?

2010-01-21 Thread g p
When you press the compile button in Eclipse, there is a drop down menu called: Output Style. One of the options there is the detailed. I suppose that would do the trick ... 2010/1/21 John V Denley johnvden...@googlemail.com Id still like to know how to set this setting via eclipse, which im

App Runs in IE - Nothing Happens in Firefox (Link Included)

2010-01-21 Thread Russ
Here is a link to my App: http://www.epcinternet.com:8080/GroupChart/GroupChart.html It runs just fine in IE, but I get nothing in Firefox. The console error I get in Firebug says: 'a' is null. Since I can't make heads or tails of the obfuscated javascript, I don't know what 'a' is null means.

Re: Maven users survey

2010-01-21 Thread olivier nouguier
As a complement I like to say that when using noserver mode - using a classic WTP deployment approach for server side component - GEP in this case manage only the GWT (client) code In this case, it works perfectly as you expected. It is just the embedded jetty server classpath that doesn't

Re: App Runs in IE - Nothing Happens in Firefox (Link Included)

2010-01-21 Thread olivier nouguier
compile and deploy with pretty instead of OBS :) On Thu, Jan 21, 2010 at 4:35 PM, Russ r...@epcinternet.com wrote: Here is a link to my App: http://www.epcinternet.com:8080/GroupChart/GroupChart.html It runs just fine in IE, but I get nothing in Firefox. The console error I get in Firebug

Re: What causes com.google.gwt.core.client.JavaScriptException, and how to trace it?

2010-01-21 Thread John Denley
I dont get that option, where is this compile button you refer to? I always use the run as, there is a Compile GWT project under that, but it doesnt give me any options, it just starts compiling! Incidentally, I have now deployed this fixed for IE version, and online, it doesnt work, even though

Re: Can I add a UIObject to a Panel?

2010-01-21 Thread Niclas Hedhman
You don't need to add the bound class to the Panel. Create a ui:field for the entire form/panel in the XML file. Cheers Niclas On Tue, Jan 19, 2010 at 12:20 PM, Lyn Headley lahea...@gmail.com wrote: Hello, I am using the UIBinder to build a div, by binding an xml file to a java class which

Re: App Runs in IE - Nothing Happens in Firefox (Link Included)

2010-01-21 Thread Russ
Okay, I depolyed with pretty. Now the Firebug error is: this$static is null What does this mean? How come the app works in IE but not Firefox? Here's a link to the app again: http://www.epcinternet.com:8080/GroupChart/GroupChart.html -- You received this message because you are subscribed to

Re: Maven users survey

2010-01-21 Thread Miguel Méndez
On Wed, Jan 20, 2010 at 12:04 PM, Eelco Hillenius eelco.hillen...@gmail.com wrote: 6. In eclipse we just start Debug as Web application. (with all libraries manually copied into war/WEB-INF/lib) This is our main problem, and I don't think it is related to only maven builds. Instead of

Re: Prevent class conversion when compiling modules

2010-01-21 Thread getaceres
I have something similar. I have this: package com.company.pack class A {} package com.company.client class B implements Serializable { some serializable fields private transient A field; private A getA() { return field; } private void setA(A val) { this.field = val; } }

Re: GWT-RPC-MAIL

2010-01-21 Thread Hasan Turksoy
you can use this[1] code... server side mail service from one of my applications. [1] http://code.google.com/p/apiks2/source/browse/trunk/src/edu/hacettepe/bote/server/service/MailServiceImpl.java Hasan http://www.jroller.com/hasant On Jan 20, 9:38 pm, Florentine3D artem.boro...@gmail.com

Re: Building a Calendar Widget like Google Calendar with GWT advisable?

2010-01-21 Thread Hasan Turksoy
i don't know much about it but there is a component library including calendar here: http://code.google.com/p/ftr-gwt-library/ you can see the demo from here: http://www.future-earth.eu/gwt/calendar/MainDemoApp.html hope it helps, Hasan... On Jan 21, 2:24 pm, mstu...@googlemail.com

Re: LGPL and other restrictive licenses

2010-01-21 Thread Open eSignForms
See other postings about this, related to SmartGWT LGPL for example. Nobody here is a lawyer, so you can only take our info for what little it's worth. Note that SmartGWT and some others have extra clauses added to the LGPL that will allow you to do so because they allow the fact that with GWT,

HTML5 DND and File Upload...

2010-01-21 Thread DaveC
OK, I've have a working implementation in IE, FF and Chrome (using Gears where necessary - GWT 2.0) that allows me to capture when a file is dragged from the desktop and dropped into the browser window. The next part of the puzzle is to grab the file data/content and upload it... grabbing the

Re: HandlerManager

2010-01-21 Thread PaulBee
I think that would be a good solution but neither FlexTable nor Panel (be it Horizontal or Vertical) have OnFocus and Blur handlers... Do you have any container to suggest? Thank you, -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post

Re: GWT-RPC-MAIL

2010-01-21 Thread Artem Borodin
Thank you. I try this is code 2010/1/21 Hasan Turksoy hturk...@gmail.com you can use this[1] code... server side mail service from one of my applications. [1] http://code.google.com/p/apiks2/source/browse/trunk/src/edu/hacettepe/bote/server/service/MailServiceImpl.java Hasan

ATDD in GWT

2010-01-21 Thread isolanet
Hi, we are implementing several application in GWT adopting the MVP pattern. All our requirements are expressed in User Stories and we would like to provide the possibility to define test via keywords starting from the Presenter. We are evaluating Robot Framework (http://

Re: MVP and tabs :)

2010-01-21 Thread Stine Søndergaard
Hmm... let's say I have a MainPanelView.ui.xml containing... ui:UiBinder xmlns:ui='urn:ui:com.google.gwt.uibinder' xmlns:g='urn:import:com.google.gwt.user.client.ui' g:TabLayoutPanel barUnit='PX' barHeight='30' g:tab g:headerTab A/g:header g:DecoratorPanel

Re: Prevent class conversion when compiling modules

2010-01-21 Thread Chris Lercher
I believe that what you expect from the GWT compiler is probably a lot harder to achieve than just pruning unused methods (which is already a great feature IMO). gwtc compiles Java source - Javascript. I assume that it can't read Java bytecode at all (?) So just providing a jar file which

Re: Maven users survey

2010-01-21 Thread Flemming Boller
Hi We, at my work, use a different approach, than others I see mentioned here. Development: We are developers using eclipse and Intellij. Important for us is IDE indenpendent usage, so I have created a Launcher.java file which actually starts HostedMode.java with appropriate arguments. That way

Re: HandlerManager

2010-01-21 Thread DaveC
Something like... ListBox box = new ListBox(); box.addItem(Hello); box.addItem(World!); final PushButton button = new PushButton(Hidden); FocusPanel p = new FocusPanel(); p.addFocusHandler(new FocusHandler() { @Override

Re: Prevent class conversion when compiling modules

2010-01-21 Thread Warpitaly
I would agree with you, if not for the small fact that GWT does not recognize some elementary J2SE features (clone, sublist, etc). I understand the reasons behind that, and accept them. But. I there-say that ignoring fields marked as @transient should be quite easy to implement... On Jan 21,

Re: Prevent class conversion when compiling modules

2010-01-21 Thread Chris Lercher
On Jan 21, 6:32 pm, Warpitaly giorgio.dava...@gmail.com wrote: I there-say that ignoring fields marked as @transient should be quite easy to implement... If none of the gwt compiled code will access the field, it's certainly easy. But that's unlikely (you have getters and setters, right?). If

Re: Building a Calendar Widget like Google Calendar with GWT advisable?

2010-01-21 Thread Paul Robinson
See http://code.google.com/p/ftr-gwt-library/ Paul mstu...@googlemail.com wrote: Hi All, I am quite new to GWT and currently evaluating this technology. For a project I need to build an application containing a calendar such as Google Calendar where the user can create and move events

Set caption on FlexTable

2010-01-21 Thread Pion
I am looking at the following: o FlexTable example on http://gwt.google.com/samples/Showcase/Showcase.html#CwFlexTable o Table caption example on http://www.w3schools.com/html/tryit.asp?filename=tryhtml_tables2 How do I set caption on FlexTable() on GWT 2.0? Thanks in advance for your help.

Re: Set caption on FlexTable

2010-01-21 Thread Pion
The following works: FlexTable flexTable = new FlexTable(); Element caption = DOM.createCaption(); DOM.setInnerText(caption, CAPTION); DOM.appendChild(flexTable.getElement(), caption); On Jan 21, 10:02 am, Pion onlee2...@gmail.com

remote testing using manual mode

2010-01-21 Thread aliman
Hi all, has anyone had any problems doing remote testing in manual mode? I figured out how to get my eclipse-generated test run configuration to run in manual mode by putting... -Dgwt.args=-runStyle Manual:1 ...into the VM args box of the run configuration, and when I try to run the tests from

Re: HandlerManager

2010-01-21 Thread PaulBee
Thank you DaveC, But the BlurHandler doesn't seem to work on the FocusPanel. I've tryed every way of taking the focus away from the panel, and it is just not calling the BLurHandler... -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To

FireFox 3.6 Can't Debug Anymore :(

2010-01-21 Thread flyingb...@gmail.com
I just upgraded my firefox and now I cant debug anymore. Only firefox seem to handle the slow ajax rpc speed in converting all the data i get from the server. chrome and ie seems to not work well. I tried to override the compatibility of the extension and it didnt seem to work. -- You received

GWT Compiler Missed an Error

2010-01-21 Thread Russ
Im my HTML file I have: td id=PanelSlot/td In my project .java file I have: RootPanel.get(panelSlot).add(hp); (Note the difference: The 'P' in PanelSlot is upper-cae in the HTML file, and lower-case in the .java file) GWT 1.7.1 comiled this with no errors, and the deployment worked in IE, but

Anchor: Link vs Visited color

2010-01-21 Thread Pion
I have the following code snippet on GWT 2.0: Anchor anchor = new Anchor(Foo, http://www.foo.com;); anchor.addStyleName(anchor); Also, I have the following CSS snippet /* test 1 */ .anchor { color:red; } The current behavior: o The color is red before clicking

Re: Upgrading from 1.4 to 2.0

2010-01-21 Thread Freller
I turned on -compileReport and found that the Compiler was compiling both locale=pt and locale=default so I change my locale to extend-property name=locale values=default/ and now it creates only one permutation! Andre On Jan 21, 6:36 pm, I wrote: Question. Even specifying one locale and one

Re: Where can I find older Versions of the Eclipse Plugin?

2010-01-21 Thread Sandra Lo
Hi Keith, Can you also provide the same for 3.4 version of eclipse, or are they not supported anymore? Thanks, -Sandra On Dec 10 2009, 9:28 am, Keith Platfoot kplatf...@google.com wrote: Hi Chris, You're correct; the update site always points to only the latest version of the plugin.  

Re: GWT Compiler Missed an Error

2010-01-21 Thread bch...@gmail.com
Perhaps, but 1. It isn't until (the javascript) run-time that id=panelSlot is resolved. 2. The compiler may not necessarily not know which html page is calling this js code, or if its needs to be a static html page that will call this js code. 3. In my opinion, the error is in the html page,

Re: Anchor: Link vs Visited color

2010-01-21 Thread Thomas Broyer
On 21 jan, 22:23, Pion onlee2...@gmail.com wrote: I have the following code snippet on GWT 2.0:             Anchor anchor = new Anchor(Foo, http://www.foo.com;);             anchor.addStyleName(anchor); Also, I have the following CSS snippet /* test 1 */ .anchor {         color:red;

Re: I18NSync and plural forms

2010-01-21 Thread Thomas Broyer
On 20 jan, 21:23, thm gmtest...@googlemail.com wrote: Hey gurus, using GWT 2.0 I fiddled around with i18n and plural forms.  From the examples I thought I could write addressBookTab_removeAddressConfirmationDialogTitle=Remove {0,number} Addresses?

Re: FireFox 3.6 Can't Debug Anymore :(

2010-01-21 Thread Jim Douglas
When you clicked Get the New Version, it should have taken you to a dialogue that says Incompatible Add-ons Found. I'm seeing a dialogue that says: Some of your add-ons won't work with Firefox 3.6, and will be disabled. As soon as they are made compatible, Firefox will update and re-enable

Re: Anchor: Link vs Visited color

2010-01-21 Thread Pion
Thanks for your help. I followed your advice. It works! Specifically, I did the following: .anchor:link { color:red; } .anchor:visited { color:red; } On Jan 21, 2:18 pm, Thomas Broyer t.bro...@gmail.com wrote: On 21 jan, 22:23, Pion onlee2...@gmail.com wrote: I have the

Re: MVP Article... Source Code?

2010-01-21 Thread Ben Harris
I've used the method here (http://www.amateurinmotion.com/articles/ 2009/11/02/async-with-gin.html) to handle services. It is a mixture of 1 and 2, you inject the services into the presenter (Is it is Guice best practice to inject what you need instead of injecting the service registry), but you

Re: javascript error (invalid Argument)

2010-01-21 Thread John V Denley
OK I lied, whilst this fix worked on my local system, and I no longer get a javascript invalid arguement error. However as soon as I deploy it live (using GAE to host) it doesnt work anymore and doesnt give any errors or anything, it just seems to hang If anyone wants to try to figure out

incubator ScrollTable

2010-01-21 Thread Alexei Telles
Hi, I'm just starting using the gwt-incubator. I need to make a table, so I am using a FixedWidthFlexTable to the header and a FixedWidthGrid to the dataTable (content of the table). I have a procedure that mounts the dataTable The problem that I am having is: when my dataTable have more than

Re: GWT 2.0 - SOP and Development Mode

2010-01-21 Thread preacher860
Ok, nevermind. I took the brute force approach and recompiled firefox with the SOP feature disabled. In case anyone needs to do that: I just made a change in the SecurityCompareURIs() function so that it would always return PR_TRUE. Ajax works again in the debugger, ahhh! On Jan 19, 9:37 pm,

uibinder specs?

2010-01-21 Thread chrisgo...@gmail.com
I'm really excited about this new feature in GWT (uibinding). I've already put together a small app that makes use of it and really see its advantages. So far, except for the tutorial listed here: http://code.google.com/webtoolkit/doc/latest/DevGuideUiBinder.html I've had to dig for examples in

Google Web Toolkit Developer Plugin on Firefox 3.6

2010-01-21 Thread Pion
I was going to upgrade Firefox 3.6. But it says that the Google Web Toolkit Developer Plugin for Firefox 1.0.7263 is not compatible. When is the plugin going to support Firefox 3.6? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post

getting data from server in GWT

2010-01-21 Thread manish
HI, i am a new user of GWT. Can anyone give me a simple example of how can i send back the response data back to the client from the server side and how client will receive this data -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post

using suggestion box in gwt

2010-01-21 Thread manish
how can i implement a simple live suggestion box in gwt.give a simple example -- 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

More than one constructor annotated with @UiConstructor

2010-01-21 Thread nina
Hi all I have my own convenient composite which is a HorizontalPanel with a Label and TextBoxBase, called FormEntry. I have 4 different constructors for this composite, where some take just a label text string and others also take a default value and a boolean determining if the TextboxBase

Re: getting data from server in GWT

2010-01-21 Thread bch...@gmail.com
http://code.google.com/webtoolkit/doc/latest/DevGuideServerCommunication.html On Jan 22, 11:53 am, manish mkj.onl...@gmail.com wrote: HI, i am a new user of GWT. Can anyone give me a simple example of how can i send back the response data back to the client from the server side and how client

Re: Google Web Toolkit Developer Plugin on Firefox 3.6

2010-01-21 Thread Jim Douglas
I'm sure it's a high priority. You can click on the little star on this page to register your interest and get added to the email notification list when it's resolved: http://code.google.com/p/google-web-toolkit/issues/detail?id=4380 On Jan 21, 7:21 pm, Pion onlee2...@gmail.com wrote: I was

port, eclipse, ff

2010-01-21 Thread Ewald Pankratz
I work with eclipse 3.5, ubuntu 9.10 64 bit, firefox 3.57. I use the lastest release of GWT and GA and had a strange experience with the result of my GWT program. When I run the program with the default address http://localhost:/ DragDropDemo.html?gwt.codesvr=127.0.1.1:9997 I always got a

Re: App Runs in IE - Nothing Happens in Firefox (Link Included)

2010-01-21 Thread ashwin acharya
Its working in my firefox - Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.1.7) Gecko/20091221 Firefox/3.5.7 On Thu, Jan 21, 2010 at 9:31 PM, Russ r...@epcinternet.com wrote: Okay, I depolyed with pretty. Now the Firebug error is: this$static is null What does this mean? How come the

Re: Client did not send n bytes as expected

2010-01-21 Thread Joe Cole
Take a look at this and the comment thread: http://dobesland.wordpress.com/2008/08/22/gwt-to-lighttpdapache-to-glassfish-502-proxy-or-500-internal-errors-fix/ There are some unresolved issues with gwt and glassfish/apache, which I think is what the cause of this error is. (We see it rarely, but

Re: Cannot debug GWT 2.0 app embedded within external iframe

2010-01-21 Thread Stevko
I had thought so too but it worked after I cleared my browser's cache and made sure the edited file was getting to my browser. Also FYI, recompiling the project replaces the file and reverses any edits. On Jan 20, 12:50 am, Itzik Yatom itzik...@hotmail.com wrote: I have the same issue, I've

Re: port, eclipse, ff

2010-01-21 Thread Ewald Pankratz
With something else I mean the wrong page I had before. On Jan 22, 6:30 am, Ewald Pankratz ewald.pankr...@gmail.com wrote: I work with eclipse 3.5, ubuntu 9.10 64 bit, firefox 3.57. I use the lastest release of GWT and GA and had a strange experience with the result of my GWT program. When I

Re: Prevent class conversion when compiling modules

2010-01-21 Thread getaceres
The problem is that the source code of both classes is in the jar. My jar has something like this: com.company |- Module.gwt.xml |- pack |- A.class |- A.java |- client |- B.class |- B.java So both source files are available but only B file is part of the module, since

Re: Prevent class conversion when compiling modules

2010-01-21 Thread getaceres
In my case, getter and setters will only be used in the server. Not even in the RPC server implementation, but in a called EJB so, as long as you don't use the getter or setter in the code, they can be ignored. If you use them, failing the compilation would be enough. Let's say that you have

Re: [gwt-contrib] Re: GWT Incubator Status Update and Schedule

2010-01-21 Thread David
Hi, It would be nice that the GWT team would release some development builds once in a while. That would be very usefull at the point where new things are added to the trunk. This way you can get a lot more input from the community, since it makes it much easier to use a more experimental version

[gwt-contrib] Re: now.. afetr GWT 2.0?

2010-01-21 Thread Lypheus
+1 JavaFX/Code GUI Streamlining instead of UIBinder Some mechanism to allow for publishing client/js friendly variants of server side objects to clean up need for DTO's. -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Custom element parsers for UiBinder

2010-01-21 Thread Daniel Dietrich
Hi George, in your solution parsing of an annotated widget will not be custom if the widget is not injected into a field, right? Here's a different idea: http://cafebab3.blogspot.com/2010/01/non-intrusive-gwt-2-mod-2nd-part.html Perhaps it is useful for you... Kind regards Daniel On 8 Jan.,

[gwt-contrib] Modifying js code in CompilationResult artifacts

2010-01-21 Thread Brendan Kenny
I'm posting to contributors because I think I'm much more likely to get an answer on compilation details here; I hope that's appropriate. If a pre-linker were to remove all CompilationResults from the artifact set, modify the contents of string literals within their js code (with valid results),

Re: [gwt-contrib] Re: GWT Incubator Status Update and Schedule

2010-01-21 Thread Arthur Kalmenson
Hmm, a nightly build sounds like a cool idea, I wouldn't mind seeing that as well. -- Arthur Kalmenson On Thu, Jan 21, 2010 at 3:28 AM, David david.no...@gmail.com wrote: Hi, It would be nice that the GWT team would release some development builds once in a while. That would be very

  1   2   >