Re: MVP related question

2010-03-19 Thread Sripathi Krishnan
Some of the client classes are needed on the server side. This is the Models from the MVP. Or, put another way, any class that is used by RPCs is needed on the server side as well. --Sri http://blog.530geeks.com On 18 March 2010 22:59, Dhiren Bhatia dhir...@gmail.com wrote: gwt-servlet.jar is

Re: MVP related question

2010-03-19 Thread Alexander
Are you really sure there are no shared classes in client? On 18 March 2010 23:29, Dhiren Bhatia dhir...@gmail.com wrote: gwt-servlet.jar is deployed. My question is about the client classes from my application. Do they need to be pushed to the servlet container? The app does not work

Re: GWT developer plugin for firefox

2010-03-19 Thread Alexander
Try this http://gwt-dev-plugin-missing.appspot.com/ http://gwt-dev-plugin-missing.appspot.com/click on plugins for other systems On 19 March 2010 02:21, Bernie bpwoolf...@gmail.com wrote: My browser is not connected to the internet (and it will never be). Is there any way to download the GWT

Re: Get compiled locales from client web application

2010-03-19 Thread Alexander
I bet you can't do it. Information about locales is used during compilation time and can't be reached later in app. Only if you hardcode it somewhere. On 18 March 2010 22:28, Thoka thobias.karls...@gmail.com wrote: How do I get the compiled locales from my client application?

Re: google web toolkit developer plugin with Mysql

2010-03-19 Thread Alexander
It isn't strictly related to GWT problem. You just configured wrong your db access. On 19 March 2010 00:26, nickbit nicola.polic...@gmail.com wrote: Hi GWT team, I'm an italian developer that has a strange problem... When I debug my GWT app in TOMCAT my mysql works PERFECTLY but, when I start

Re: Obfuscate java source

2010-03-19 Thread Alexander
GWT client code could be obfuscated during compilation. Server side code could be obfuscated by any obfuscator. Just google it. On 16 March 2010 12:35, rasmus.olaus...@gmail.com rasmus.olaus...@gmail.com wrote: Hi. I'm developing a GWT library. And I would like to be able to obfuscate the

How to get the year of the current date ? Date manipulation ...

2010-03-19 Thread tim
Hi all, I would like to get the year of the current date, but this is not working : int year = Calendar.getInstance().get(Calendar.YEAR); How to use date in gwt ? Thanks in advance for your answer -- You received this message because you are subscribed to the Google Groups Google Web

Re: Dropping IE6 support

2010-03-19 Thread Rade Martinović
I believe that Service Pack 2 brings IE7 with it. Not installing service packs is HUGE security risc. Basically, I agree with Patrick Tucker here. Getting something to work in IE6 not only produces huge amount of effort for toolkit developers, but also for us, the end users of the toolkit. --

Re: How to get the year of the current date ? Date manipulation ...

2010-03-19 Thread Joe Cole
new Date() :) On Mar 19, 9:04 pm, tim timor.su...@gmail.com wrote: Hi all, I would like to get the year of the current date, but this is not working : int year = Calendar.getInstance().get(Calendar.YEAR); How to use date in gwt ? Thanks in advance for your answer -- You received this

Re: How to get the year of the current date ? Date manipulation ...

2010-03-19 Thread Joe Cole
Apologies... int year = new Date().getYear() On Mar 19, 9:04 pm, tim timor.su...@gmail.com wrote: Hi all, I would like to get the year of the current date, but this is not working : int year = Calendar.getInstance().get(Calendar.YEAR); How to use date in gwt ? Thanks in advance for

Re: How to get the year of the current date ? Date manipulation ...

2010-03-19 Thread tim
Thanks for your answer. this is marked as deprecated and it's not the good value, that's not 2010. I would rather use a non-deprecated method. On Mar 19, 9:33 am, Joe Cole profilercorporat...@gmail.com wrote: Apologies... int year = new Date().getYear() On Mar 19, 9:04 pm, tim

Re: How to get the year of the current date ? Date manipulation ...

2010-03-19 Thread mariyan nenchev
Unfortunately GWT does not have support for Calendar class from the java api. I think you may use gwt DateTimeFormat and pass to it custom format with only the year(not sure if this is possible), and you will get the year as String. -- You received this message because you are subscribed to the

Re: ALIGN_CENTER problem ?!!!

2010-03-19 Thread Gecko
Very good, it works with uibinder only. Thank you... On 19 mar, 01:58, Tristan tristan.slomin...@gmail.com wrote: here's how you do it in UiBinder g:HorizontalPanel width=100%   g:Cell horizontalAlignment=ALIGN_CENTER     g:VerticalPanel/   /g:Cell /g:HorizontalPanel the above code will

Re: google web toolkit developer plugin with Mysql

2010-03-19 Thread nickbit
Thnx Alexander, I have created a new mysql user that will be able to connet to the DB from any host in the internet (%). Infact, when I use Tomcat to debug, the mysql connection works perfectly. On Mar 19, 8:20 am, Alexander the.malk...@gmail.com wrote: It isn't strictly related to GWT problem.

Keeping a class reference to CssResource

2010-03-19 Thread shahid
I am a little confused about this and I wonder if someone could clarify it for me. I have a CssResource interface called Css in my application. Is it OK to have a reference to the interface in other classes as : private Css css = MyClientBundle.uiStyles(); and then use it in various places in

Re: Graphical javascript objects implemented to GWT

2010-03-19 Thread Jan Ehrhardt
First create a subclass of Widget to wrap your graphical object as a GWT Widget. Assumed that your graphical object requires a DIV element, where it's created on, do the following in your Widget's constructor: DivElement element = Document.get().createDiv(); makeMyGraphicalObject(element);

Re: How to capture that the user has moved away from the current browser window.

2010-03-19 Thread aditya ch
I don't think the blur even would ever get fired when the change of window happens. I have faced a similar problem with GXT API, while I was trying to hide the combo's list when the user moves out of the current window. Still I'm clueless on that part. :( On Mar 19, 10:20 am, Sudeep S

Re: Dropping IE6 support

2010-03-19 Thread Jan Ehrhardt
Google can drop IE 6 support from it's products, if they see, that their users have modern browsers. But this isn't true for the whole web and all GWT users. Many enterprise customers still want IE 6 support. You can already drop IE 6 support for your GWT app by using things, IE 6 can't handle.

Re: JAXB compatibility with GWT 2.0, any news?

2010-03-19 Thread crojay78
Hi, jaxb and gwt 2.0 working good togehter. I am generating Java-Files from my XML-Schema, I use these Java-Classes in my GWT-APP as transfer objects. One thing you have to do in JAXB Configuration, you have to configure a binding so that the output of the java classes will implements the

FlexTable in a FocusPanel

2010-03-19 Thread Rolf Howarth
I'm having trouble using a FocusPanel once the widget it contains gets a scrollbar because it doesn't fit in its container. I want to select rows within a table using either the mouse or keyboard. It works fine with just a click handler but once I add the table to a FocusPanel to trap

Re: GWT 2.0.2 : Failed to Connect 127.0.0.1:8888 development mode

2010-03-19 Thread Mathieu
Ok, Just had to add the following to Run Config - Argument and then Program Arguments -bindAddress 0.0.0.0 On 18 mar, 18:08, Mathieu mathieu.chau...@gmail.com wrote: Hi everybody, How can I set up the bindAdress on eclipse ??? Thanks On 18 fév, 17:45, Thomas thomas.lacr...@jouy.inra.fr

Unable to migrate GWT application to version 2.03 due to problem with internationalization

2010-03-19 Thread craige
I am trying to migrate a GWT 1.5 application (which definitely works without problem) to 2.03 and I am having problems with the compilation of the application. My application uses various locales which are defined in the Main.gwt.xml file extend-property name=locale values=es/

Error while installing Google Plugin for (Fedora) Eclipse 3.5.1

2010-03-19 Thread Randell
I'm getting this error when I'm trying to install the Google Plugin for Eclipse 3.5.1. I already did a yum remove *eclipse* and removed all occurrences of find / -name eclipse, then yum install eclipse again, but I'm getting the same error. Cannot complete the install because one or more required

Re: Annotated timeline container size

2010-03-19 Thread Utgarda
Yep, same thing here. And when I output with an alert whatever panel I use for a container, before putting the timeline in it, like this : Window.alert(String.valueOf(panel)); I get stuff like div style=width: 500px; height: 200px;/div which seems to point that the panel actually has its sizes

Re: Dropping IE6 support

2010-03-19 Thread Rade Martinović
Read my post above. I have written the following: Getting something to work in IE6 not only produces huge amount of effort for toolkit developers... The price of supporting IE6 for *toolkit developers* is already big, and effort in supporting basic things in the toolkit could be better spent in

Re: Inter-frame communication

2010-03-19 Thread Pondmouse
I did something similar by writing native javascript. See here http://googlewebtoolkit.blogspot.com/2008/07/getting-to-really-know-gwt-part-1-jsni.html I had trouble getting the embedded iframes call the javascript functions. See here http://www.dyn-web.com/tutorials/iframes/ Managed to call the

Re: How to add Widget to a DOM element?

2010-03-19 Thread Pondmouse
Doesn't this work Rootpanel.get(MyIDName).add(widget); I've managed to insert HTML with clickhandlers like this On Mar 18, 3:04 pm, Thomas Broyer t.bro...@gmail.com wrote: On Mar 17, 8:07 pm, Stefan Ballmer stefan.ball...@gmail.com wrote: On Mar 17, 10:46 am, Thomas Broyer t.bro...@gmail.com

Re: native java script

2010-03-19 Thread Pondmouse
You can add the javascript through GWT like so: // A Java method using JSNI native void sayHelloInJava(String name) /*-{ $wnd.sayHello(name); // $wnd is a JSNI synonym for 'window' }-*/; For more examples go here:

Re: Selenium RC and OutOfMemory DevMode error

2010-03-19 Thread Tristan
So nobody has a clue as to why DevMode would run out of memory after 34 URL refreshes? On Mar 16, 12:01 am, Tristan tristan.slomin...@gmail.com wrote: I started this in Google App Engine Java group, but as Ikai pointed out, it probably belongs here. Does anyone have any hints for this problem?

Re: GWT 2.0 - Hibernate - Eclipse: Problem with testing

2010-03-19 Thread pau2bk
Hello, I found it. The solution was, not to use the App Engine (disable Use Google App Engine in the project properties. Dieter On 18 Mrz., 22:38, Mathieu mathieu.chau...@gmail.com wrote: Hi Dieter, There is an intersting article written here

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

2010-03-19 Thread Nathan Wells
Just an FYI for linux users: the workaround above works only if you use single quotes rather than double quotes. Nathan Wells On Tue, Mar 9, 2010 at 1:57 AM, Fotos Georgiadis gfo...@gmail.com wrote: This issue has been already reported in the gwt-maven-plugin and a patch is pending:

Re: Google Plugin for Eclipse 1.3 ignores WTP web directory

2010-03-19 Thread Michail Prusakov
Hi Keith, Thank you for your answers. I have another improvement to suggest. At present if I have Launch and deploy from this directory checked, the plugin outputs the generated stuff correctly but does not refresh the project. That is I have to press f5 manually. This is a problem as since

New LayoutPanels (DockLayoutPanel) need Standard Mode ???

2010-03-19 Thread pau2bk
Hello, Using GWT 3.0.1 with Eclipse 3.5. I created a sample application (starting with the default Eclipse GWT Sample project) with a DockLayoutPanel (using the small code from the Google web site). I tried and tried, but nothing worked. Today I deleted the first (DOCTYPE) line from the HTML

How are the app engine jars in WEB-INF/lib/ upgraded?

2010-03-19 Thread jbdhl
In a GWT-only project, the correct gwt-servlet.jar is automatically copied to WEB-INF/lib when the project is compiled. That is a very nice behavior! However, the app engine jars does *not* seem to be copied to lib/ when compiling the project. Why not? How do I upgrade from one app engine version

Import CSS to UiBinder style?

2010-03-19 Thread Will
My GWT project is to the point where I want to standardize the widget colors by defining the colors in one place and accessing the color definition within the ui:style section of each of my widgets. I am using GWT 2.0.3 and the latest Eclipse plugin (if those are relevant). Example: colors.css:

Re: Error while installing Google Plugin for (Fedora) Eclipse 3.5.1

2010-03-19 Thread Rajeev Dayal
See http://code.google.com/eclipse/docs/faq.html#wstinstallerror On Fri, Mar 19, 2010 at 9:25 AM, Randell josephrandell.benavi...@gmail.comwrote: I'm getting this error when I'm trying to install the Google Plugin for Eclipse 3.5.1. I already did a yum remove *eclipse* and removed all

Re: Dropping IE6 support

2010-03-19 Thread Thomas Broyer
On Mar 19, 2:42 pm, Rade Martinović rocky...@gmail.com wrote: In my opinion IE6 is 8+ years old browser on unsupported operating system (Windows XP now is not supported OS from Microsoft). I thought XP SP3 was supported 'til 2014? (end of support for Windows XP, as there won't be a SP4) And

Re: Import CSS to UiBinder style?

2010-03-19 Thread Will
I found the answer to the first part of my question!! I am able to import a shared CSS reference file by using the following: ui:style ... src=../colors.css That makes the @def entries in colors.css visible to any style rules in the ui:style section. My next challenge is going to be a

Re: How are the app engine jars in WEB-INF/lib/ upgraded?

2010-03-19 Thread Rajeev Dayal
Hi, Whenever you switch SDKs, the appropriate runtime jars for the SDK should be automatically copied into war/WEB-INF/lib for you. The copy happens on SDK switch; not on compilation. What version of the plugin are you using? Rajeev On Fri, Mar 19, 2010 at 10:36 AM, jbdhl jbirksd...@gmail.com

Re: Sending HTTP GET request not working!

2010-03-19 Thread Jon Britton
Hi Rob, Thanks for the response. I'm not sure I understand you correctly - If I disable the built in server, how exactly does the project run? If Tomcat is running on 8080 and I change the GWT port to 8080 then I just get a 404 error saying it can't find /GWTWPS.html, obviously be Tomcat

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

2010-03-19 Thread Rajeev Dayal
What action were you performing when this happened? Are there any other errors that appear in the error log (Window - Show View - Error Log) that appear around the same time? On Thu, Mar 18, 2010 at 10:25 AM, Silverado malans...@gmail.com wrote: I get the same error when I open my project after

Re: Dropping IE6 support

2010-03-19 Thread Rade Martinović
I stand corrected. -- ~~Rade~~ 2010/3/19 Thomas Broyer t.bro...@gmail.com On Mar 19, 2:42 pm, Rade Martinović rocky...@gmail.com wrote: In my opinion IE6 is 8+ years old browser on unsupported operating system (Windows XP now is not supported OS from Microsoft). I thought XP SP3 was

Re: Unable to migrate GWT application to version 2.03 due to problem with internationalization

2010-03-19 Thread Danny Goovaerts
es_GTC is normally not a valid locale. The country part of a locale is the two character ISO country code. GTC is not a valid country code. A reason might be that GWT 1.5 was not strict about the country code format, and that 2.0 is much stricter. Danny On 19 mrt, 14:28, craige

Re: How are the app engine jars in WEB-INF/lib/ upgraded?

2010-03-19 Thread jbdhl
Aaah, yes, you are absolutely right. Both the GWT and GAE jars are copied upon SDK selection. Problem solved. 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

Re: Error while installing Google Plugin for (Fedora) Eclipse 3.5.1

2010-03-19 Thread Randell
On Fri, Mar 19, 2010 at 10:53 PM, Rajeev Dayal rda...@google.com wrote: See http://code.google.com/eclipse/docs/faq.html#wstinstallerror It solved the problem. Thanks! Side note: The plugin installation page ( http://code.google.com/eclipse/docs/install-eclipse-3.5.html) should have at least

Re: How to capture that the user has moved away from the current browser window.

2010-03-19 Thread Thomas Broyer
On Mar 19, 5:20 am, subhro subhrajyo...@gmail.com wrote: Hello, I am trying to implement a google.com search form style auto-suggest box. I have reached a stage where the drop down with suggestions appear correctly. However on changing windows (click on any other app window on the

Re: Keeping a class reference to CssResource

2010-03-19 Thread Thomas Broyer
On Mar 19, 10:49 am, shahid shahidza...@gmail.com wrote: I am a little confused about this and I wonder if someone could clarify it for me. I have a CssResource interface called Css in my application. Is it OK to have a reference to the interface in other classes as : private Css css =

[ERROR] [testgwt20layout] Deferred binding failed for 'com.google.gwt.dom.client.DOMImpl'

2010-03-19 Thread Tim K
I received this error message while I running development mode for Eclipse. The error repeated after many attempts. The same error appeared in another project in the workspace. I created a new GWT project which worked successfully. I GWT-compiled the first project and the problem went away.

Re: GWT 2.0.3 + Maven2 + Eclipse

2010-03-19 Thread Gabriel Guerrero
You can also just use an ant task or the exec plugin to in maven to execute the compiler, I use an ant task in maven. To debug use the eclipse gwt plugin Cheers Gabruel like this profile idcompileJS/id properties

Re: How to get the year of the current date ? Date manipulation ...

2010-03-19 Thread Thomas Broyer
On Mar 19, 9:47 am, tim timor.su...@gmail.com wrote: Thanks for your answer. this is marked as deprecated and it's not the good value, that's not 2010. int year = 1900 + new Date().getYear(); I would rather use a non-deprecated method. A future version of GWT (that's already in trunk,

Re: Sending HTTP GET request not working!

2010-03-19 Thread Thomas Broyer
On Mar 18, 4:34 pm, Jon Britton mankillseveryth...@googlemail.com wrote: And a 0 status code? If that is the case, it would mean that your code do violate the SOP. Yes, I still get 0 status code.  Switch to URL references without scheme, host and port, or make sure they are the same

Re: Sending HTTP GET request not working!

2010-03-19 Thread RPB
You'll have to copy GWTWPS.html (and probably GWTWPS.css) to your localhost before it will work I would expect the URL to look something like this when you're debugging (if localhost was 127.0.0.1 and port was 8080): http://127.0.0.1:8080/GWTWPS.html?gwt.codesvr=127.0.0.1:9997 The gwt.codesvr

Re: Sending HTTP GET request not working!

2010-03-19 Thread Jon Britton
Yes, that's clearer. But when I run my GWT project it isn't hosted in the same place as my server so it won't work. Also, I want to be able to receive XML from remote servers - I guess this isn't possible using this method, but I've read that is IS possible (although I don't know how to do it).

Re: Sending HTTP GET request not working!

2010-03-19 Thread Jon Britton
Yes, that's clearer. But when I run my GWT project it isn't hosted in the same place as my server so it won't work. Also, I want to be able to receive XML from remote servers - I guess this isn't possible using this method, but I've read that is IS possible (although I don't know how to do it).

Re: GWT/protobuf/nixysa

2010-03-19 Thread Thomas Broyer
On Mar 18, 9:13 am, Romain Francois romain.francois.r.enthusi...@gmail.com wrote: Hello, I was wondering if {anyone tried/something is planned/is it a good idea at all} to build NPAPI plugins for compatible browsers to deal with protocol buffer messages, using for example nixysa. One

Using GWT to develop firefox plugins

2010-03-19 Thread kozura
Is anyone out there using GWT for developing firefox plugins? If so, are there any tools out there that are helpful in doing this, for instance integrating with the standard extension structure and/or with XUL? I would like to make a plugin using various components of my main GWT application,

Re: google web toolkit developer plugin with Mysql

2010-03-19 Thread nickbit
It seems that I cannot use java.net.SocketPermission in google web toolkit developer plugin, and so you can't use mysql database there. On Mar 19, 10:26 am, nickbit nicola.polic...@gmail.com wrote: Thnx Alexander, I have created a new mysql user that will be able to connet to the DB from any

Problems with GWT-EXT widget

2010-03-19 Thread Dan
Hi all, I am trying to use the date and time pickers that I found here: http://www.gwt-ext.com/demo/#multipleFieldForm which is GWT-Ext 2.0.6. GWT version I am using is 2.0 * I imported the library for GWT-Ext ( gwtext.jar ) * I inherited the package ( inherits name='com.gwtext.GwtExt' / ) in

Re: Google Plugin for Eclipse 1.3 ignores WTP web directory

2010-03-19 Thread Zak
Hi Keith- We're also hurtin from the absolute ${workspace_loc} path. Looking forward to the fix! On Mar 18, 5:31 pm, Keith Platfoot kplatf...@google.com wrote: Hi Michail, I've confirmed that this is a bug in 1.3: a directory browse dialog *should*be appearing when you launch, to ask for a

Re: GWT/protobuf/nixysa

2010-03-19 Thread Mathias Herberts
In case you're interested, I've written a patch for the Thrift compiler (fb's version of pbs) which generates GWT compatible code. @see http://bibale.posterous.com/the-revenge-of-the-bibale-midi-chlorians -- You received this message because you are subscribed to the Google Groups Google Web

Re: How to get the year of the current date ? Date manipulation ...

2010-03-19 Thread kozura
And just for kicks, the JavaScript date class returns different values for older dates than the Java class, and neither of them deal well with older dates, time zones, and date manipulation anyway. But, for normal applications using modern dates in a standard, simple way it is adequate, and

Problems with GWT-EXT widget

2010-03-19 Thread Dan
Hi all, I am trying to use the date and time pickers that I found here: http://www.gwt-ext.com/demo/#multipleFieldForm which is GWT-Ext 2.0.6. GWT version I am using is 2.0 * I imported the library for GWT-Ext ( gwtext.jar ) * I inherited the package ( inherits name='com.gwtext.GwtExt' / ) in

Re: Sending HTTP GET request not working!

2010-03-19 Thread RPB
I might not be understanding the problem correctly. Let me give you an example of what my site does (which sounds vaguely similar to what you want to do): -GWT sends a GET request to my server -My server sends a request to Amazon (or equivalent), which sends back information in XML format -My

Re: Sending HTTP GET request not working!

2010-03-19 Thread Thomas Broyer
On Mar 19, 4:52 pm, Jon Britton mankillseveryth...@googlemail.com wrote: Yes, that's clearer.  But when I run my GWT project it isn't hosted in the same place as my server so it won't work.  Also, I want to be able to receive XML from remote servers - I guess this isn't possible using this

Re: Problems with GWT-EXT widget

2010-03-19 Thread Dan
Apologies for double posting, now sure how it happened. I also followed the instructions found here : http://code.google.com/p/gwt-ext/wiki/GettingStarted so I included the js and css files as suggested, inside the html file. link rel=stylesheet type=text/css href=js/ext/resources/css/

Re: Selenium RC and OutOfMemory DevMode error

2010-03-19 Thread Nathan Wells
I get similar problems, but they are related to restarting the server, rather than refreshing the browser, and only while developing, not in a Selenium server. You might be able to resolve your issue by way of the -noserver option. I haven't yet looked for documentation about it, but it allows

Re: google web toolkit developer plugin with Mysql

2010-03-19 Thread nickbit
I find the solution!!! If you are using Google App Engine (separate from GWT), you cannot use an external database. App Engine doesn't allow you to open socket connections, and that is exactly what the getConnection() method does. So, if tou would like to use mysql in your GWT app with google web

How to add a scrollbar to a SuggestBox popup?

2010-03-19 Thread googelybear
Hi, I would like to display a scrollbar in the popup panel shown by the SuggestBox (Imagine there might be 100 entries in the list and you don't want to display a huuuge popup, instead you want to add a nice vertical scrollbar to it). Does anyone know how to achieve this with gwt 2.0? I have

Upgrade from 1.5.3 to 2.0

2010-03-19 Thread San
Hi All, I have upgraded my application from GWT1.5.3 to GWT2.0 successfully. Now as I am having lot of code which was written in GWT 1.5.3 era (Widgets, Panels etc), How much beneficial it would be to use UiBinders to enhance UI? Will it be required to write/change number of classes for the

UiBinder and Shared CssResource types

2010-03-19 Thread Will
My GWT 2.0.3 project uses UiBinder to create widgets and I wanted to use a shared CssResource to make each widget have a common runtime CSS class. I created my SharedStyle as follows: @Shared interface SharedStyle extends CssResource{ public String test(); } Then each WidgetX uses the following

Re: UIBinder with custom faces

2010-03-19 Thread Craig
Has anyone tried to do this? Thanks Craig -- 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: How to add a scrollbar to a SuggestBox popup?

2010-03-19 Thread Paul Stockley
Can't you just add a scrollPanel as the first child of the Popup? -- 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

speed tracer problem

2010-03-19 Thread דרידה
hi i am trying to add the flag to the google shortcut but it refuses to accept it. i downloaded the developer version and installed the speed tracer but cannot make it to work. please help -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group.

Re: Inter-frame communication

2010-03-19 Thread Jonathan Hunt
Hi Thanks for your help. I guess my question wasn't so much how to do but more advice on a good, clean way of implementing it in gwt. Basically I want interframe rpc. Something like the server rpc in gwt where you don't have to manually deal with serialization etc. I was hoping someone might have

Re: Remote HTTP fetch from Server not working?

2010-03-19 Thread Jason C
Hello, I'm having a similar issue where my servlet can not reach a URL within my company's intranet. My company has a proxy and firewall, but I've written other servlets that don't have any issue reaching URLs on my intranet. It's possible that gwt requires me to manually specify a proxy, but

DateTimeFormat giving wrong date

2010-03-19 Thread Goga
Hi, I have GWT 1.7 I am feeding the following to DateTimeFormat function format(Date date, TimeZone timeZone): Date: Sun Mar 14 04:00:00 EDT 2010 TimeZone: America/Vancouver created with TimeZoneConstant Properties. The function returns me back String 2010-03-13 whereas it should be 2010-03-14

GWT and Acegi

2010-03-19 Thread Apolo
Hello, I've just started with GWT. I've started a project where it's needed an integration with Acegi Security. I really had no idea about Acegi and after reading the documentation and watch the examples i still don't get how to integrate with GWT. I've also checked

Re: Several CSS resource questions

2010-03-19 Thread PhilBeaudoin
I have the exact same problem with opacity. When I add the IE- specific: filter: alpha(opacity=20); The CSS resource to fails to compile. The IE8 version: seems to work fine. I haven't looked for a workaround, yet, but all I can think of will look like an ugly patch... I've found the bug in

Re: Several CSS resource questions

2010-03-19 Thread PhilBeaudoin
Just noticed that the issue has a workaround: filter: literal(alpha(opacity=50)); On Mar 19, 2:14 pm, PhilBeaudoin philippe.beaud...@gmail.com wrote: I have the exact same problem withopacity. When I add the IE- specific:   filter: alpha(opacity=20); The CSS resource to fails to compile. The

Why HandlerManager use quene to register event handler?

2010-03-19 Thread zggame
Hi, I am new to gwt also this event-handle programing model. I am trying to use gwt-presenter 1.1.1. However, I have a few problems with the eventbus. The eventbus in gwt-presenter is actually realized by HandlerManager. I have a event (EventPage) firing for a page, within the handling, it

Re: Why HandlerManager use quene to register event handler?

2010-03-19 Thread Thomas Broyer
On Mar 19, 10:57 pm, zggame zgg...@gmail.com wrote: Hi, I am new to gwt also this event-handle programing model.  I am trying to use gwt-presenter 1.1.1.  However, I have a few problems with the eventbus.  The eventbus in gwt-presenter is actually realized by HandlerManager.   I have a event

Re: Client Bundle and Image Internationalization

2010-03-19 Thread Francisco Bischoff
I tested with a TextResource... just a foobar.txt file with some content inside. Btw, for now I'm using constants to localize images, but without using Bundles... just renaming the URL -- Francisco Bischoff http://www.cirurgiaplastica.pro.br O mate está para o gaúcho como o chá para os

Re: GWT and Acegi

2010-03-19 Thread kriswpl
Hello, If you don;t know anything about Acegi... 1. Acegi was migrated to Spring Security (http:// static.springsource.org/spring-security/site/) 2. It can secure in two ways: a) web tier by url or b) methods in classes I use spring security and I like it, but it took some time to know what it

Re: Why HandlerManager use quene to register event handler?

2010-03-19 Thread zggame
Thank you very much. I put a 500ms delay and it works very well now. These Asyc and event/handler model are really different from what I was used to on the server-side. Thanks for all the help. On Mar 19, 5:22 pm, Thomas Broyer t.bro...@gmail.com wrote: On Mar 19, 10:57 pm, zggame

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

2010-03-19 Thread codesite-noreply
Comment by GlacieredPyro: Thanks for the response, I see now that only by running IE in no addon mode will stop the memory from growing, in fact it doesnt get near 30MB. Not that my normal IE installation has anything but the default addons but they seem to make the most trivial application

[gwt-contrib] Re: Tweaks to eclipse instructions (issue242801)

2010-03-19 Thread jlabanca
LGTM http://gwt-code-reviews.appspot.com/242801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors To unsubscribe from this group, send email to google-web-toolkit-contributors+unsubscribegooglegroups.com or reply to this email with the words REMOVE ME as the subject.

Re: [gwt-contrib] Re: RR : Soft permutations (issue160801)

2010-03-19 Thread Lex Spoon
On Thu, Mar 18, 2010 at 7:38 PM, John Tamplin j...@google.com wrote: On Thu, Mar 18, 2010 at 7:25 PM, sp...@google.com wrote: The main issue is that I don't believe that sharded builds will take full advantage of the collapsing. We need for Precompile to emit the number of *collapsed*

Re: [gwt-contrib] Array implementation for Lightweight Collections. Pure Java implementation only.

2010-03-19 Thread Miguel Méndez
I'm not advocating that you save up for one large patch at the end. You should have the code reviewed in increments as you are planning on doing. All I'm suggesting is that the code not land in trunk/user/... until is ready. A real branch or bikeshed would be a better place. On Thu, Mar 18,

[gwt-contrib] Re: While paving the way to ValueStore, I've greatly simplified (issue243801)

2010-03-19 Thread amitmanjhi
EntityKey.java seems to be missing from the patch On 2010/03/19 07:52:39, Ray Ryan wrote: http://gwt-code-reviews.appspot.com/243801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors To unsubscribe from this group, send email to

Re: [gwt-contrib] Array implementation for Lightweight Collections. Pure Java implementation only.

2010-03-19 Thread Rodrigo Chandia
Yes. I like your idea. I'll move the development to bikeshed so nobody thinks this is ready for general consumption. Once the classes are in a good enough state we will migrate (move) things into GWT proper. Afterwards, integration of these classes into GWT (aka using them for interesting things)

[gwt-contrib] Re: Multiple inheritance in Widget hierarchy

2010-03-19 Thread jd
Thanks for all the responses guys. So far it hasn't been so difficult to change the hierarchy of the elements I need. I was mainly just curious as to why such a setup existed - quite an ingenious solution to your problem! Ajax crawling looks very cool indeed but I suspect my site will have too

[gwt-contrib] [google-web-toolkit] r7748 committed - Checkpoint tree/list stuff:...

2010-03-19 Thread codesite-noreply
Revision: 7748 Author: r...@google.com Date: Fri Mar 19 07:22:04 2010 Log: Checkpoint tree/list stuff: No more DataSource interface Added maxSize/increment to SimpleCellList constructor (not fully functional) Fix tree node size 0 bug

[gwt-contrib] DockLayoutPanel addLayoutCompleteHandler

2010-03-19 Thread jd
Hi, I use DockLayoutPanel with Google maps and there is a known issue where any component inside a DockLayoutPanel that depends on the size of its container must be initialized like this: root.animate(0, new AnimationCallback() { public void onLayout(Layer layer, double progress) { }

[gwt-contrib] ClientBundle produce memory leaks in IE6

2010-03-19 Thread AdrienA
Hello, I find out a problem with the using of ClientBundle wich produce memory leaks in IE6. To proove that, I have realised a very simple application (you can find the source code at this address :

[gwt-contrib] Re: While paving the way to ValueStore, I've greatly simplified (issue243801)

2010-03-19 Thread rjrjr
http://gwt-code-reviews.appspot.com/243801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors To unsubscribe from this group, send email to google-web-toolkit-contributors+unsubscribegooglegroups.com or reply to this email with the words REMOVE ME as the subject.

[gwt-contrib] Re: While paving the way to ValueStore, I've greatly simplified (issue243801)

2010-03-19 Thread rjrjr
From desk review w/Amit. Will do this and some other cleanup and then submit: Revert Places.java Maybe todo valuestore in EmployeeListRequest as not-used-yet Try to back out ValueStore changes since they do nothing yet http://gwt-code-reviews.appspot.com/243801/diff/6001/7001 File

Re: [gwt-contrib] Array implementation for Lightweight Collections. Pure Java implementation only.

2010-03-19 Thread Ray Ryan
Great. When you move them to trunk/bikeshed, please *don't* put them under the com.google.gwt.bikeshed package. We've concluded that was a mistake and will be rejiggering it slightly. Your stuff should stay in its real packages. On Fri, Mar 19, 2010 at 9:57 AM, Rodrigo Chandia

Re: [gwt-contrib] Array implementation for Lightweight Collections. Pure Java implementation only.

2010-03-19 Thread Rodrigo Chandia
You just told me right in time (talking to myself: how was incantation to revert the last git commit?) Just to make sure. The classes should go into: bikeshed/src/com/google/gwt/collections/client/ bikeshed/test/com/google/gwt/collections/client/ Or would it be better to do a new project under

Re: [gwt-contrib] Array implementation for Lightweight Collections. Pure Java implementation only.

2010-03-19 Thread Ray Ryan
I think bikeshed/{src,test}/com/google/gwt/collections/client/ is just right. Be warned, btw, that we have no ant test target in the build.xml there yet. Patches welcome ;-) On Fri, Mar 19, 2010 at 12:15 PM, Rodrigo Chandia rchan...@google.comwrote: You just told me right in time (talking to

Re: [gwt-contrib] Array implementation for Lightweight Collections. Pure Java implementation only.

2010-03-19 Thread Rodrigo Chandia
Sure! 2010/3/19 Ray Ryan rj...@google.com I think bikeshed/{src,test}/com/google/gwt/collections/client/ is just right. Be warned, btw, that we have no ant test target in the build.xml there yet. Patches welcome ;-) On Fri, Mar 19, 2010 at 12:15 PM, Rodrigo Chandia

  1   2   >