Re: How to change css value's through CssResource mechanism?

2011-11-11 Thread Ed
Yes, I was afraid of that. I hoped to do it more elegant and be able to use preferences per Widget instance. It's however only possible to use preferences per Widget type (globally). Is it even possible per instance, such that would it be worth adding an issue about this? On Nov 10, 11:47 pm,

Re: is there a widget which instead fileinput?

2011-11-11 Thread agi
hi :) if you are looking for very elegant solution I can recommend you : http://code.google.com/p/gwtupload/ hth, agata On Nov 11, 7:41 am, wahaha il...@yahoo.com.cn wrote: to instead the input type=file element. how to solute? -- You received this message because you are subscribed to the

Re: What is current state/fix of/for deprecated PlaceController constructor

2011-11-11 Thread tanteanni
since the beginning of using activities i asked myself why some dependency injection examples injected an eventbus and don't use the one that start() delivers. i thought that the pattern - inject all stuff you need. But thx to you-both this question is answered - don't inject the bus! use the

VerticalPanel differently rendered on FireFox and Chrome

2011-11-11 Thread tanteanni
if i add some stuff to a verticalPanel nested in a SimplLayoutPanel(100%h,100%w) the result is very different on different browsers: chrome don't use the 100% and sticks all stuff in VP together. Firefox(6) and IE(6) use all the space to layout the stuff inside VP. Why does this happen? The

Re: Extend RequestFactory to Make Use of None Primitive Types

2011-11-11 Thread hkropp
Thanks for your detailed explanation. It helped me understand RF and GWT a little better. I ended up with a EmplyeeGWT class, which extends the MongoDB model but returns the ObjectId as String and parse the returned String to ObjectId. This seems to work. One restriction to our problem is

Re: GWT Developer Plugin for Firefox 8

2011-11-11 Thread csillag
When running inside Iceweasel 8.0, the plugin in installed correctly, but dev mode does not work. Kristof On nov. 9, 11:07, Alan Leung acle...@google.com wrote: Hi all: I just finished building / testing the FF8 dev mode plugin for Linux 32 bit (http://www.sendspace.com/file/h8wgmn) More

why getPermutationStrongName is final and writeResponse is private?

2011-11-11 Thread Constantino
Hi, I am extending the RemoteServiceServlet and having trouble with those methods because one is final and the other is private. Is there any special reason for this? It is funny that the method readContent is protected and its counterpart writeResponse is private. This means in my subclass I

Re: GWT Developer Plugin for Firefox 8

2011-11-11 Thread csillag
Sorry, false alarm. I installed the wrong version (which contained only the 32 bit version) on a 64bit system. The later version works all right. Thank you, this way much faster than the previous rounds. On nov. 11, 11:55, csillag csillag.kris...@gmail.com wrote: When running inside Iceweasel

FileOutputStream Not supporting

2011-11-11 Thread arun paul
Hello , i am trying to upload a file to other server through gxt, i got a error which telling that java.io.FileOutputStream is not supported by Google App Engine's Java runtime environment how can i resolve this problem?? or is there any altrnate way ? please help me :( Regards Arun Paul

Saving Template In Google Web Tool Kit

2011-11-11 Thread magesh kumar
Hii I have a task to create a application where a user can design his own template and save it which he will load later and use it.. Any Suggestion or road map on how i can approach this... Note: Template includes some thing like a drag and drop which we have in VB where we drag some

Is the session needed?

2011-11-11 Thread Filippo De Luca
Hi all, I'm working on a GWT 2.3 app. I notice app uses the session to store login info and other stuff. There is a callback intercept the expired session and handle it. My question is: is in a GWT based app the session still needed? can I have a stateless server? thank you. -- You received

Re: FileOutputStream Not supporting

2011-11-11 Thread Markus Zywitza
You need to use the blobstore on GAE. --Markus 2011/11/11 arun paul arunpaul...@gmail.com: Hello , i am trying to upload a file to other server through gxt, i got a error which telling that  java.io.FileOutputStream is not supported by Google App Engine's Java runtime environment  how can i

Setup Database Access in Development Mode

2011-11-11 Thread m...@grayout.de
Hello, I started an other thread dealing with file write access on the server side. After reading the responses I am assured that the better solution would be to store the available data in a database. I am able to find some information on how to access a sql database in general. But I have no

Re: Is the session needed?

2011-11-11 Thread Juan Pablo Gardella
Yes you can. Use the session if you need. 2011/11/11 Filippo De Luca filosgang...@gmail.com Hi all, I'm working on a GWT 2.3 app. I notice app uses the session to store login info and other stuff. There is a callback intercept the expired session and handle it. My question is: is in a GWT

Re: Is it possible to stop the browser from interpreting control-key presses?

2011-11-11 Thread kstokes
Vid, Thanks very much for the reply. I made the following example. It can either capture keyboard events no matter what has the focus, or only if a focusPanel has the focus, depending on the last line in onLoad().. It captures everything on Firefox 8 It captures everything except

Re: How to change css value's through CssResource mechanism?

2011-11-11 Thread Uemit
If the FlexButton uses ClientBundle and CssResources you should be able to override it on instance level. Similar to how you can do it with the CellWidget where you can pass a different CssResource implementation in the constructor. However this requires that you somehow have access to the

Why does GWT's API differ so much from the Javascript one?

2011-11-11 Thread Stephen Buergler
Wouldn't it be easier to use the interfaces in org.w3c.dom.* or to generate new ones from idl files. The WebIDL spec shows how to translate things to Java, though I am having a tough time finding more information about it. -- You received this message because you are subscribed to the Google

Re: CellTree, adding data to a child node and refresh

2011-11-11 Thread Matej
I had the same problem. See working example on: http://stackoverflow.com/questions/7239960/programatically-refresh-a-gwt-celltree -- 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: log4j and the MobileWebApp sample

2011-11-11 Thread Jenson
I was able to resolve the logging problems by adding the following to the log4j.properties file: log4j.rootLogger=debug,A1 Any advice on the other no realm problem in the MobileWebApp sample from GWT 2.4 would be greatly appreciated. Has anyone here tried running the MobileWebApp sample in

Re: How to change css value's through CssResource mechanism?

2011-11-11 Thread Ed Bras
@Uemit, Thanks for input but that's not the question. I use this mechanism in many places, combined with @Import, and that is the reason of my question as you don't want to override the style/resources for every time you need a button with just different preferences. It would be nice to specify

Re: Drag drop

2011-11-11 Thread Celinio
2) Can i easily do drag and drop some file from the file explorer to a widget in a web page ? I haven't seen any example that does that. Is is possible ? The presentation of John La Banca about GWT + HTML5 has a part about the drag and drop feature but it's from one widget to another widget. I

Generate Sample Code with Request Factory

2011-11-11 Thread Bala
In Eclipse, when you create a GWT Web Application Project, it generates sample code. That sample code is still based on GWT-RPC. Is it possible to generate the sample code with Request Factory? Thanks, Bala -- You received this message because you are subscribed to the Google Groups Google Web

Does the GWT magic ever fail you?

2011-11-11 Thread David Vree
My company has taken the decision to move from Flex to HTML5/ Javascript for a corporate web-app. So far we are very impressed with GWT and are thinking of utilizing it, especially since we are mostly a Java house. My biggest concern, however, is the wonderful magic that is the GWT Javascript

Re: Does the GWT magic ever fail you?

2011-11-11 Thread Samyem Tuladhar
Well there are some cases where the development code is not the same as the executed Javascript code. You'd typically notice this around async RPC calls where the order of events during Java based debugging session is different from the Javascript. But then again this is something you'd have

GWT HTTP RequestBuilder

2011-11-11 Thread karun
Hi I am using GWT HTTP RequestBuilder in my application to exchange information between 2 servers, out of which 1 server hosts my GWT application and another is general server which hosts j2ee application both servers domains are as follows server 1. http://factory-dev03.example.com:8111/

Question for experts: Pluggable gwt module CompileModule class XXXX.gwtar file.

2011-11-11 Thread KD
OK this one is for GWT experts!! I have a GWT app that has widgets. We are shipping 5 widgets out of the box. The widgets also depend on our API which act as simple DAO pojos Now when this gets outs to customers. They have a requirement where they want to create their own widgets

Re: Does the GWT magic ever fail you?

2011-11-11 Thread KD
In my experience, debugging has been OK as long as you are savvy with dev mode. We also have our own exceptions and use GWT logger extensively. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit

Re: GWT Dashboard Development

2011-11-11 Thread KD
Do you still need help with this? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/VtyKgLySv3sJ. To post to this group, send email to

Re: Does the GWT magic ever fail you?

2011-11-11 Thread Jeff Chimene
On 11/11/2011 12:39 PM, David Vree wrote: My company has taken the decision to move from Flex to HTML5/ Javascript for a corporate web-app. So far we are very impressed with GWT and are thinking of utilizing it, especially since we are mostly a Java house. My biggest concern, however, is

Re: Question for experts: Pluggable gwt module CompileModule class XXXX.gwtar file.

2011-11-11 Thread Jeff Chimene
On 11/11/2011 01:07 PM, KD wrote: OK this one is for GWT experts!! Maybe GQuery plugins? No doubt there will be rework required. I have a GWT app that has widgets. We are shipping 5 widgets out of the box. The widgets also depend on our API which act as simple DAO pojos Now when this

DialogBoxes and MenuBars . . . zIndexing a bad thing?

2011-11-11 Thread King_V
All, I'm working on my ever-evolving bit of code, and have run across something of an issue. My apologies for the lengthy prelude before I get to the actual question. Firstly, I have a full-browser-screen display - a DockLayoutPanel. Within it are a: MenuBar - NORTH FlowPanel - SOUTH

Re: GWT HTTP RequestBuilder

2011-11-11 Thread Jens
Sure you got a 200 in IE? IE should also give some error if you try to make a request to a different domain/port. Also shouldn't your code snippet use factory-dev109.example.com if server 2 is the server you want to request? Well but in general you have three options to make cross domain

Re: DialogBoxes and MenuBars . . . zIndexing a bad thing?

2011-11-11 Thread King_V
Well, this is embarrassing, but maybe the answer will help someone else who's run into the same problem. Override the onBrowserEvent() method in my own subclass of DialogBox as follows: @Override public void onBrowserEvent(Event event) { switch(event.getTypeInt()) { case

[ANN] Scala+GWT 0.1-M3 released

2011-11-11 Thread Grzegorz Kossakowski
Hello, I'm excited to announce second milestone of Scala+GWT project. Download (and then follow README instructions) from here: http://goo.gl/RZdVT Release notes (included below) can be found here: http://goo.gl/H8san Scala+GWT 0.1-M3 The third official milestone release

Re: is there a widget which instead fileinput?

2011-11-11 Thread Thomas Broyer
http://google-web-toolkit.googlecode.com/svn/javadoc/latest/com/google/gwt/user/client/ui/FileUpload.html -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit

Re: What is current state/fix of/for deprecated PlaceController constructor

2011-11-11 Thread Thomas Broyer
On Wednesday, November 9, 2011 5:35:24 PM UTC+1, Thomas Broyer wrote: (I unfortunately don't have any real experience on this though, as we're stuck with an old version of GWT before things were moved to web.bindery; too many customizations –yes, you could say abuses– of RF that make it

Re: Using DockPLayoutPanel - can I get an autoexpanding south widget?

2011-11-11 Thread Andrei
Don't use DockLayoutPanel. Use LayoutPanel instead. It gives you complete control: you can make any area expandable. Personally, I never use DockLayoutPanel: it adds no useful functionality compared to LayoutPanel, while the size of the compile code jumps if you use both of these widgets. If you

Re: Dart and GWT

2011-11-11 Thread karim duran
Hi Eric, I saw the Dart Editor (Linux, Mac, Win). It's a standalone editor based on Eclipse UI. Is there a real Dart plugin for Eclipse ? If not, do you plan to provide one ? 2011/11/11 Eric Clayberg (Google) clayb...@google.com See...

[gwt-contrib] FF8 Devmode Plugin (issue1589803)

2011-11-11 Thread acleung
Reviewers: conroy, Description: FF8 Devmode Plugin Please review this at http://gwt-code-reviews.appspot.com/1589803/ Affected files: M plugins/xpcom/ExternalWrapper.cpp M plugins/xpcom/Makefile A plugins/xpcom/VisualStudio/ff80-xpcom.vcproj M plugins/xpcom/install-template.rdf M

[gwt-contrib] Re: FF8 Devmode Plugin (issue1589803)

2011-11-11 Thread t . broyer
I'll reiterate my question: is there any plan to move to js-ctypes? or is there some better alternative? or are binary components and recompiling every 6 weeks a necessary evil? I mean, have you looked at the problem yet? and if so what's the outcome? and is there a plan on your side? If you

[gwt-contrib] Re: FF8 Devmode Plugin (issue1589803)

2011-11-11 Thread Alan Leung
Brian and Ray has been experimenting with different approaches to debug dev mode that steer away from browser plugins / APIs. They have had some success but from what I understand it is still in a very early stage. My plan is to keep FF going as long as possible in the mean time. -Alan On

Re: [gwt-contrib] Re: FF8 Devmode Plugin (issue1589803)

2011-11-11 Thread John Tamplin
On Fri, Nov 11, 2011 at 5:16 AM, t.bro...@gmail.com wrote: I'll reiterate my question: is there any plan to move to js-ctypes? or is there some better alternative? or are binary components and recompiling every 6 weeks a necessary evil? I mean, have you looked at the problem yet? and if so

[gwt-contrib] Fix: WorkingWithMaven wiki no longer valid for Eclipse Indigo

2011-11-11 Thread Ingert Doe
Wiki page in question: http://code.google.com/p/google-web-toolkit/wiki/WorkingWithMaven Today I updated my Eclipse plugins and when I tried to update the m2e connector for build-helper-maven-plugin I got an error that the an older version of org.eclipse.jdt couldn't be found. After some digging

[gwt-contrib] [ANN] Scala+GWT 0.1-M3 released

2011-11-11 Thread Grzegorz Kossakowski
Hello, I'm excited to announce second milestone of Scala+GWT project. Download (and then follow README instructions) from here: http://goo.gl/RZdVT Release notes (included below) can be found here: http://goo.gl/H8san Scala+GWT 0.1-M3 The third official milestone release

Re: [gwt-contrib] Re: FF8 Devmode Plugin (issue1589803)

2011-11-11 Thread Thomas Broyer
On Friday, November 11, 2011 4:38:23 PM UTC+1, John A. Tamplin wrote: On Fri, Nov 11, 2011 at 5:16 AM, t.br...@gmail.com wrote: I'll reiterate my question: is there any plan to move to js-ctypes? or is there some better alternative? or are binary components and recompiling every 6 weeks a

[gwt-contrib] Introduce a temp AST node intended to hold the fragment number (issue1590803)

2011-11-11 Thread acleung
Reviewers: cromwellian, Description: Introduce a temp AST node intended to hold the fragment number Please review this at http://gwt-code-reviews.appspot.com/1590803/ Affected files: M dev/core/src/com/google/gwt/dev/jjs/JavaToJavaScriptCompiler.java M