Re: GWT application listings

2011-02-19 Thread Philippe Beaudoin
I don't know of any such site. This question on Quora might be a good starting point: http://www.quora.com/What-web-applications-use-Google-Web-Toolkit-(GWT) -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send emai

Re: Module unload

2011-02-19 Thread Y2i
I use Window.addCloseHandler() to handle module unload, but I'm not sure if it is an official method or not. -- 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 unsu

google maps with GWT Designer

2011-02-19 Thread djronbxs
Hi, im trying to designe a google map application with GWT Designer, can you please show me where do I attach the map please. Do i need to insert a vertical panel then add a canvas and then attach the map to the canvas ? or can I attach the map to the vertical panel ? thanks ron -- You received

Clear Center of a DockLayoutPanel

2011-02-19 Thread DartmanX
I am trying to determine how to clear out the center of a DockLayoutPanel (GWT 2.1). My "main" view will be something like this: I'm using an MVP design and will register event handlers (which will be delegated to MenuItem Command implementations

Hijri (Jalali) Datepicker

2011-02-19 Thread nima
Dear all expert I want to generate hijri (jalali) date picker, there is no problem in the UI design, but the callendar converter doesn't work accurately with GWT. It should be mentioned that the converter itself is working correctly and the problem starts when I try to use it in GWT. Can anyone he

Problem in the Release Notes page for 2.2

2011-02-19 Thread Brian V
Hi, Not sure where the best place to report this, but I believe you have a broken link on the Release notes page about HTML5 canvas: http://code.google.com/webtoolkit/doc/latest/ReleaseNotes.html#HTML5 I believe the link: http://code.google.com/p/gwt-canvas-demo/ should be: http://code.google.co

Multiple requests in one context

2011-02-19 Thread Mike Limansky
Hi all. We are using GWT in our project. And we got the problem related with RequestFactory. The problem is following. Let's we have a some entity class which contain some formula and a data to evolute it. The calculation is performed on the server side. We are using RequestFactory to get int

Re: How to make a TextArea auto-growing...?

2011-02-19 Thread Brandon Donnelson
Nice link, they do it better I think than I did. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to google-web-toolkit@googlegroups.com. To unsubscribe from this group, send email to google-web-toolkit+un

Re: best practice for callbacks

2011-02-19 Thread Brandon Donnelson
An example of handlers I have: http://gwtexample.appspot.com/ - Demo http://code.google.com/p/gwt-examples/wiki/Navigation - Wiki of my handler stuff -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to go

Re: best practice for callbacks

2011-02-19 Thread Brandon Donnelson
MyClassWidget widget = (MyClassWidget) event.getSource(); If all the widgets are different, and your not sure of the type, I'll stick the handler after init of the widget. for (int i=0; i < 10; i++) { MyClassWidget widget = new MyClassWidget(); widget.addChangeHandler(new ChangeHandler() {

Accordion Panel, collapse all accordions

2011-02-19 Thread Mulder
The default behavior is to expand the first accordion, and collapse all the rest. Is there a way to collapse all the accordions on initial page load. Thanks -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send ema

Re: Code Splitting: code placed in wrong fragment

2011-02-19 Thread Sky
Hmm, ok I have a greater understanding of my problem now. My PageProxys are what do the instantiations of Pages and the first split point that directly references a PageProxy will be the split fragment that contains the associated Page. I don't understand why though. Maybe it has something to d

Re: RequestFactory/Editor AutoBean has been frozen error

2011-02-19 Thread Colin Alworth
I think you are addressing the wrong issue – Scott is pointing out that general exceptions do not allow you to re-fire contexts after modifying the proxies further. The r/o proxy instance is stuck as read only because there still exists a context-specific edited copy of it, which did not succeed

Code Splitting: code placed in wrong fragment

2011-02-19 Thread Sky
*Is there any way to see, via the Compile Reports, why a particular class is ending up in a particular split fragment? There are only stack traces for classes that end up in the initial fragment and leftovers fragment.* My specific problem: I have Pages and a PageFactory creates these pages. Ev

Re: SAXParseException when using SafeHtml Template

2011-02-19 Thread zixzigma
Thank you Ryan, it Worked !!! -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to google-web-toolkit@googlegroups.com. To unsubscribe from this group, send email to google-web-toolkit+unsubscr...@googlegro

Re: SAXParseException when using SafeHtml Template

2011-02-19 Thread Ryan Mehregan
try wrapping your "template markup" in a block element, public interface Template extends SafeHtmlTemplates { @SafeHtmlTemplates.Template("{1}") SafeHtml img(String url, String text); } Ryan -- You received this message because you are subscribed to the Google Groups "

SAXParseException when using SafeHtml Template

2011-02-19 Thread zixzigma
Hello Everyone, I am getting SaxParseException when using a custom created SafeHtml Template, it complains that the markup is malformed, but I cannot spot the problem. do you know what I am doing wrong ? Thank You I have the following template: final Template template = GWT.create(Template

GWT application listings

2011-02-19 Thread Terrance.Macgregor
I am a huge fan of GWT was wondering if anyone kept a page of sites that used GWT to develop their applications. I think that RoR does a nice job of this. Ref: http://rubyonrails.org/applications -Terry I apologize in advance if this post is a duplicate. -- You received this message because

Re: best practice for callbacks

2011-02-19 Thread frank
Thanks, but I loop through UI-Elements so I can´t make the variables final. -- 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 emai

Re: best practice for callbacks

2011-02-19 Thread Jeff Larsen
If you make the variables final you can have access to them. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to google-web-toolkit@googlegroups.com. To unsubscribe from this group, send email to google-w

Re: Getting Error when deploying on Tomcat

2011-02-19 Thread Noor
The only thing I am not understanding is that when I'm running in production mode, everything is running perfectly but when I am taking the war file and placing it on external jetty or tomcat, first the application is not loading correctly and also event the rpc is not working -- You received th

Re: UiBinder + HTMLPanel + css = Loss of hair???

2011-02-19 Thread Hilco Wijbenga
On 19 February 2011 03:43, pete wrote: > Hallo, > > I have a weird problem, in my UiBinder template (suppose it's the > template for TestWidget) I have sth like the following code > > >    .fullSize { >        height: 100%; >        width: 100%; >    } > > > >     >        TestDiv >     > > >

Re: Problems while installing Google Updates for Eclipse 3.6

2011-02-19 Thread Sandeepa Nadahalli
Hello, I finally got it working. I had to download the plugins separately and install from the local disk. You can try this approach before going for uninstall-install cycle. Cheers, Sandeepa -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" gr

Re: GWT Designer 2.2 error with gwt-maven project

2011-02-19 Thread Philippe Beaudoin
The only difference with mine seems to be that I don't include gwt-dev in the dependencies. Including it did cause problem in m2eclipse so you may want to take it out. (It's grabbed automatically by gwt-maven-plugin.) -- You received this message because you are subscribed to the Google Groups

Re: Stack Layout Panel - strange layout problem after switching tabs!

2011-02-19 Thread Philippe Beaudoin
Using IE's DOM explorer might help you see what's wrong there... If you have the app deployed somewhere I could take a quick look. Philippe -- 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-t

Re: Getting Error when deploying on Tomcat

2011-02-19 Thread Noor
If someone knows something about this, please help !! -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to google-web-toolkit@googlegroups.com. To unsubscribe from this group, send email to google-web-toolk

Re: GWT 2.2 / RequestFactory - Can domain objects be interfaces as opposed to concrete classes?

2011-02-19 Thread Frédéric
Thanks Thomas and John for for your inputs. Would you see this workaround as the default behaviour in future GWT releases? On 18 fév, 18:13, John Maitland wrote: > I had the same problem and managed to implement a new > ServiceLayerDecorator. See.. > > http://groups.google.com/group/google-web-to

Re: UiBinder + HTMLPanel + css = Loss of hair???

2011-02-19 Thread pete
Not being a html / css is my problem as well ;-) Just that anyway, there is this weird div with only attribute "position: relative" created in the html output. So even if I set margin, it still goes with respect to this sh div, that I don't know how to control, doesn't it? If I set the attribut

"Note: RequestFactory caches ServiceLocator and service instances, so make sure both are thread-safe."

2011-02-19 Thread Luca
Today, reading again the documentation to find a sparkle of light in implementing RequestFactory with EJBs, I read this note. Now, it's not a problem if ServiceLocator are cached, there I do a simple JNDI lookup so every time the method is called we got a new Service instance. The problem is t

best practice for callbacks

2011-02-19 Thread frank
Hi, I have the following Problem. >From many different methods (e.g. a Clickhandlers) I call the same async service on the server. In the callback I don´t have access on the variables of my calling method, which I need, to decide, who called the service. (for example to update different UI-Widge

Re: UiBinder problem with IsWidget

2011-02-19 Thread Colin Alworth
Assuming MapWidget extends IsWidget, yes, that should work. On Sat, Feb 19, 2011 at 8:26 AM, pete wrote: > But I should be able to use an Interface in my template, if I use > (provided = true)? > > On Feb 18, 5:22 pm, Y2i wrote: > > Oops, sorry I didn't notice MapWidget was an interface. I th

Re: UiBinder problem with IsWidget

2011-02-19 Thread pete
But I should be able to use an Interface in my template, if I use (provided = true)? On Feb 18, 5:22 pm, Y2i wrote: > Oops, sorry I didn't notice MapWidget was an interface.  I think you are > correct. -- You received this message because you are subscribed to the Google Groups "Google Web Too

Getting Error when deploying on Tomcat

2011-02-19 Thread Noor
Hi, I have already compiled my application, when I am running it in web mode from Eclipse everything is working perfectly fine, no error at all. In my project, i'm using several libraries such as hibernate. All libraries have been correctly been placed on the classpath as well as in the lib folder

Re: Master-details with GWT

2011-02-19 Thread Jeff Schwartz
Not sure what kind of help you are asking for. Do you want suggestions regarding the UI and what interface elements to use or are you asking about database schema, etc.? If your question is UI related you can use a CellTable to present the master records. When a row is selected you can get the Mas

Re: GWT Designer 2.2 error with gwt-maven project

2011-02-19 Thread har_shan
Hi, The same error still comes for me in eclipse for gwt-maven-plugin 2.2.0 (as per temp suggestion above) and even when it's plugin dependency is updated to use GWT 2.2.0. This is my relevant POM section: org.codehaus.mojo org.code

Master-details with GWT

2011-02-19 Thread csaffi
Hi everybody, I'd like to develop a web application using GWT for implementing the master-details pattern. When clicking on the master-table, the details- table will show all records related to the master. For example, two related tables with a 1:n relation could be these: - Master: orders(id, da

Error cant found Acceso.gwt.xml

2011-02-19 Thread SrArcos
Hello All, I have a problem with a GWT proyect (I'm using GWT 2.1.1). I have created a proyect called Library which is located on src/ org,nac.jamr, and obviously I have a folder org.nac.jamr.client, org.nac.jamr.server and org.nac.jamr.shared, ok? I need another module for an initial login html p

Re: ServiceLocator and entities with collection

2011-02-19 Thread Luca
I got them, every collection has getter/setter, but they are not called on the server side. Where is my mistake ?? -- 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.

Re: ServiceLocator and entities with collection

2011-02-19 Thread Thomas Broyer
Every property has to have a setter for it to be mutable, i.e. a one-to-many relationship needs to have a One#setFoos(List many). RequestFactory won't getList()/clear()/addAll(), it will setList(); even if on the client-side you called getList/add/remove/etc. BTW, same goes for embedded/value o

Re: ServiceLocator and entities with collection

2011-02-19 Thread Luca
Thank you very much Thomas, to summarize what you sent me I can say that only many-to-one relationship are managed, one-to-many it's up to the developer ??? -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send emai