[no subject]

2012-04-17 Thread song chen
-- 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...@googlegroups.com. For more options, vi

Strange behaviour on Native Events (Mouse Events)

2012-04-17 Thread Sachin
Hi All, I am using a DataGrid with EditTextCell for creating editable columns. If I click a cell on DataGrid, it becomes Editable, so that I can change the value. However after changing the value in text box when I click on someother cell corresponding FieldUpdater is not called, whereas it is cal

Resolution Dependent ImageBundles

2012-04-17 Thread Evan Ruff
Hey guys, So I'm designing an application to be used on tablets and phones. With the introduction of the new iPad, my images are getting BIG. Real big. HUGE. They're so big at this point, that it's really unwieldy to download the ginormous ImageBundle; further, when scaled down in the browser,

Re: Resolution Dependent ImageBundles

2012-04-17 Thread Jens
What about a custom property for deferred binding in a .gwt.xml file and a small javascript that fills its value based on window.devicePixelRatio. Older iOS devices have a ratio of 1 while the retina devices have a ratio of 2 because each pixel is doubled. So you could define your own ratio ran

Re: does any Breedcrumb widget in gwt 2.4?

2012-04-17 Thread Kei Kei
what is gwt bootstrap? I glance the site http://gwtbootstrap.github.com/ but does not find any breedcrumb widget, also, even it has, it is some framework like GXT, SMARTGWT but not GWT? On Mon, Apr 16, 2012 at 9:12 PM, Thomas Lefort wrote: > May be follow bootstrap for gwt? There is a breadcrumb

how to select a treeitem on click of + icon on Tree

2012-04-17 Thread Dayananda B V
HI all, How I can select corresponding a treeitem on click of + icon on the tree. appreciate your help. Thanks Daya -- 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: How to create war file in GWT 2.4 / Eclipse Indigo

2012-04-17 Thread Magallo
Hi, I read this article about "Deploy Module" option. I know it's not completely in topic but it's regarding this. I see that in Eclipse there is the possibility to deploy a war file just opening the context menu with right-click of the mouse on the module name file .java in the package explorer

Re: Google Groups like toolbar in GWT

2012-04-17 Thread Magallo
Ok, I see. Thank. I just found this and I think it's interesenting. I want to share with all of you. http://blog.elitecoderz.net/gwt-toolbar-for-richtextarea-a-richtexttoolbar-with-html-editor/2010/02/ On Tuesday, March 6, 2012 5:17:25 PM UTC+1, Sachin Shekhar R wrote: > > You cannot use menuba

Re: reload celltable data

2012-04-17 Thread Magallo
Just to quote U2I still haven't found what I'm looking for.. For now I just use a custom label with the "loading..." text instead of a loading indicator. I know it's not the right solution but it's a workaround that helps waiting for the right solution. On Tuesday, March 20, 2012 3:20:5

Testing app with subdomains in development-mode

2012-04-17 Thread Gilad Egozi
Hello, I have a GWT application that supports multitenancy by subdomains. I want to be able to test my app in development mode. I am able to access my app using either: http://localhost:/MyApp.html?gwt.codesvr=127.0.0.1:9997

Re: Testing app with subdomains in development-mode

2012-04-17 Thread Qian Qiao
On Tue, Apr 17, 2012 at 20:11, Gilad Egozi wrote: > Hello, > > I have a GWT application that supports multitenancy by subdomains. > I want to be able to test my app in development mode. > I am able to access my app using either: > > http://localhost:/MyApp.html?gwt.codesvr=127.0.0.1:9997 > or

Re: Testing app with subdomains in development-mode

2012-04-17 Thread Olivier Scherler
> > I have a GWT application that supports multitenancy by subdomains. > I want to be able to test my app in development mode. Did you add your domains to the list of hosts in the GWT Developer Plugin configuration? Olivier -- You received this message because you are subscribed to the Google

Re: Testing app with subdomains in development-mode

2012-04-17 Thread Gilad Egozi
Hey Joe, The error I'm getting is the usual: Plugin failed to connect to Development Mode server at localhost:9997 Follow the underlying troubleshooting instructions Could you please elaborate more regarding this bindAddress parameter? I'm working in Eclipse and apparently miss some knowledge

Re: Testing app with subdomains in development-mode

2012-04-17 Thread Gilad Egozi
No, I did not. :-) Could you refer me to some document for this? Thanks. On Tuesday, April 17, 2012 3:26:32 PM UTC+3, Olivier Scherler wrote: > > I have a GWT application that supports multitenancy by subdomains. >> I want to be able to test my app in development mode. > > > Did you add your dom

Re: Testing app with subdomains in development-mode

2012-04-17 Thread Thomas Broyer
On Tuesday, April 17, 2012 2:34:04 PM UTC+2, Gilad Egozi wrote: > > No, I did not. :-) > > Could you refer me to some document for this? > >> See http://code.google.com/p/google-web-toolkit/wiki/TroubleshootingOOPHM -- You received this message because you are subscribed to the Google Groups

Re: Shortest way to get a List of widgets with text and a button (VerticalPanel, CellList..?)

2012-04-17 Thread tanteanni
thx again, with flow panel it was very easy to implement. the problem was to get the "selected" line (the line the button was clicked). now i am using the cell stuff, with its "selection model" i can easily do what i want. ('til now i don't have any html/css in my code - hope springs eternal ;

Exclude gwt-dev.jar from a war deploy for Tomcat

2012-04-17 Thread Magallo
Hi, all. I'm trying to create a .war file of my GWT project to deploy in Tomcat. I see that in Eclipse there is the possibility to deploy a war file just opening the context menu with right-click of the mouse on the module name file .java in the package explorer and choosing the "Google Web Too

Re: Exclude gwt-dev.jar from a war deploy for Tomcat

2012-04-17 Thread skippy
I am not sure about what you are trying to go, but instead of running the deploy menu option try to right clicking on the build.xml and click run as Ant. then the xml file will not be re-generated. On Apr 17, 8:23 am, Magallo wrote: > Hi, all. I'm trying to create a .war file of my GWT project t

Re: Exclude gwt-dev.jar from a war deploy for Tomcat

2012-04-17 Thread JoyaleXandre
I asked myself the same question, not only for gwt-dev.jar, but also to junit.jar. If we could remove them, we could have a lighter file to upload on the remote server. Le mardi 17 avril 2012 09:23:37 UTC-4, Magallo a écrit : > > Hi, all. I'm trying to create a .war file of my GWT project to dep

Re: A problem with richtextareas in Firefox 11.0

2012-04-17 Thread pop.ionut84
I have the same issue with Firefox 11. The strange thing is that if you investigate with firebug, the text is present in the iframe. On Thursday, April 5, 2012 6:26:44 PM UTC+3, Niki wrote: > > Hi, > I am developing a web-application with GWT 2.4.It was working pretty well > in all major browser

Re: Testing app with subdomains in development-mode

2012-04-17 Thread Joshua Kappon
Unfortunately, neither the GWT plugin nor the GWT developer mode server support wildcards with sub-domains, so you'll need to configure you're sub domains one at a time (see and star Issue 7003 ). you'll need to do the following

Animation frame rate, possible to increase?

2012-04-17 Thread GWTter
Hi all, I've written a move animation using the gwt way (extending animation class etc.) and it works great but I've noticed that when that if I keep the duration the same say 1000ms the longer the move distance is the choppier the animation seems (the animation is smoother the shorter the move

Re: Exclude gwt-dev.jar from a war deploy for Tomcat

2012-04-17 Thread Magallo
I understand what you say. Maybe you're right. In any case this leads me to make these questions: 1) Why the "Deploy module" process copies the gwt-dev.jar file to the WEB-INF/lib directory? 2) The build.xml file generated contains some absolute paths that are specific of my machine. I think E

Re: Animation frame rate, possible to increase?

2012-04-17 Thread Thomas Broyer
On Tuesday, April 17, 2012 5:43:03 PM UTC+2, GWTter wrote: > > Hi all, > > I've written a move animation using the gwt way (extending animation class > etc.) and it works great but I've noticed that when that if I keep the > duration the same say 1000ms the longer the move distance is the chopp

Re: Animation frame rate, possible to increase?

2012-04-17 Thread Thomas Broyer
On Tuesday, April 17, 2012 6:05:19 PM UTC+2, Thomas Broyer wrote: > > > > On Tuesday, April 17, 2012 5:43:03 PM UTC+2, GWTter wrote: >> >> Hi all, >> >> I've written a move animation using the gwt way (extending animation >> class etc.) and it works great but I've noticed that when that if I kee

Re: Is SplitLayoutPanel stupid or arrogant?

2012-04-17 Thread stagirus
Thank you very much. I did not find many classes that are based on the new Layout panel design. Does the single LayoutPanel class support all the features of older HorizontalPanel and VerticalPanel. What about the AbsolutePanel and FlowPanels? Are they compatible with the new LayoutPanels?

Re: Using System.getProperty(User.Name) in GWT

2012-04-17 Thread Saty
Thanks for your feedback! I am trying to get the logged in windows user id on the client side.I want to get the user name of the user that initiated the request from the browser. This is the code that I tried to use in onModuleLoad method: String str = System.getProperty("user.name"); I was gett

Skipping classes in class hierarchy with Editor Framework?

2012-04-17 Thread Jens
Hi, is it somehow possible to skip classes in a class hierarchy when using the Editor Framework? For example I have lightweight model classes that only contains a Long id and the actual model with all properties. If a property is a list of other model classes this list only contains the light

Re: Animation frame rate, possible to increase?

2012-04-17 Thread GWTter
Hi Thomas, I'm testing on FF. I thought it was probably just that I'm doing the impossible like you said too because the code I have for the animation is as concise as can be, the onUpdate() is just 2 lines of code which are just updating the top and left of the element. Maybe if I make the dur

Re: Skipping classes in class hierarchy with Editor Framework?

2012-04-17 Thread Aidan O'Kelly
If I understand you correctly, using @Path with the dot syntax should work: @Path("model.x.y.otherModels") OtherModelListEditor otherModels; On Tue, Apr 17, 2012 at 5:40 PM, Jens wrote: > Hi, > > is it somehow possible to skip classes in a class hierarchy when using the > Editor Framework? > >

Re: Using System.getProperty(User.Name) in GWT

2012-04-17 Thread Hilco Wijbenga
On 17 April 2012 09:40, Saty wrote: > Thanks for your feedback! > > I am trying to get the logged in windows user id on the client side.I > want to get the user name of the user that initiated the request from > the browser. This is the code that I tried to use in onModuleLoad > method: > > String

Re: Animation frame rate, possible to increase?

2012-04-17 Thread Aidan O'Kelly
Depending on your needs, you could consider using css3 transitions (or even css3 animations, though they are much less supported) to get smoother animations. (they are generally hardware accelerated) http://css3.bradshawenterprises.com/ Its not a very 'GWT way' of course, as it doesn't support old

Re: Is SplitLayoutPanel stupid or arrogant?

2012-04-17 Thread Qian Qiao
On Wed, Apr 18, 2012 at 00:19, stagirus wrote: > Thank you very much. I did not find many classes that are based on the new > Layout panel design. Does the single LayoutPanel class support all the > features of older HorizontalPanel and VerticalPanel. What about the > AbsolutePanel and FlowPanels?

Re: Animation frame rate, possible to increase?

2012-04-17 Thread GWTter
Hi Thomas, Actually, just had one last question. I went actually tested to make sure. I'm running my animation 1000ms like above and kept track of the number of times the onUpdate() function is being called. I'm getting an average of 12 calls/updates, this would mean that I'm achieving 12fps? D

Re: Animation frame rate, possible to increase?

2012-04-17 Thread GWTter
Hi Aidan, Thanks for the suggestion. I actually considered this initially, however the move positions are dynamic/I wouldn't know the positions ahead of time. Do you think it would be possible to do this by setting the element's transition attribute or would it have to be the animation attribut

Re: Skipping classes in class hierarchy with Editor Framework?

2012-04-17 Thread Jens
Ahhh good catch, totally forgot that. Works now, thanks :) -- J. -- 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/-/S7sRbiUZW0cJ. To post to this

Re: Animation frame rate, possible to increase?

2012-04-17 Thread Aidan O'Kelly
Dynamic positions work fine with transitions, how it works is you just say (by setting the transition property) 'I want to animate any changes to top,left,width,height' . You don't even need to specify the positions at that time, but from that point on, any-time you set the left/top/right/width, it

Re: Call for action: Time to rethink a road-map and more frequent updates for GWT.

2012-04-17 Thread Yeroc
Two weeks later and not a single reply by a GWT developer? On any open source project that would be enough to scare users away. -- 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.goog

Customize GWT CellTree Item

2012-04-17 Thread Markandayarushi Pamu
Hi All, I have one different requirement in CellTree. Currently CellTree has once cell for each node, in that cell we can give the html content and give the events for that node item. onclick of the whole node anywhere event will fire. But my requirement is, I want to create 2 buttons like (Edi

Re: Animation frame rate, possible to increase?

2012-04-17 Thread GWTter
Sounds good, I'll give that a shot. Thanks again Aidan. -Seth On Tuesday, April 17, 2012 2:16:52 PM UTC-4, Aidan OK wrote: > > Dynamic positions work fine with transitions, how it works is you just say > (by setting the transition property) 'I want to animate any changes to > top,left,width,hei

Re: Call for action: Time to rethink a road-map and more frequent updates for GWT.

2012-04-17 Thread Gražvydas Valeika
On Tue, Apr 17, 2012 at 9:48 PM, Yeroc wrote: > Two weeks later and not a single reply by a GWT developer? On any open > source project that would be enough to scare users away. > > > According this google+ post: https://plus.google.com/u/0/117361110923472794003/posts 'The engineering work in

Re: Resolution Dependent ImageBundles

2012-04-17 Thread Colin Alworth
It could be possible to wrap your ClientBundles in an appearance implementation, and use replace-with declarations on that, to check for dpi when the app starts up. Check out the notes on the appearance concept at http://code.google.com/p/google-web-toolkit/wiki/CellBackedWIdgets#Appearance_Patt

Re: Call for action: Time to rethink a road-map and more frequent updates for GWT.

2012-04-17 Thread emurmur
I'm one of the fence sitters. I have been using Flex/Flash, which has been fantastic, but has no future on the mobile web. I think there are only two mature tools that would allow me to create similarly rich applications; GWT and Closure Tools. Google has decided that Javascript won't cut it for

Re: How to track native browser scroll up-down movement

2012-04-17 Thread Thad
I would rewrite this as SplitLayoutPanel. would be topDiv and a SimpleLayoutPanel. would be leftDiv and a SimpleLayoutPanel. would be rightDiv and a ScrollPanel or CustomScrollPanel. It's a pain in the neck to get in place, but it does work. On Monday, April 16, 2012 4:45:01 PM UTC-4, Deepak

Re: Recruiting

2012-04-17 Thread Thad
You might want to look at the *google-web-toolkit-employment*<#%21forum/google-web-toolkit-employment>group. (https://groups.google.com/forum/?fromgroups#!topic/google-web-toolkit/N9NaadyNOk4) On Sunday, April 15, 2012 6:08:41 AM UTC-4, Thomas Lefort wrote: > > I am looking into recruiting - or

Re: Exclude gwt-dev.jar from a war deploy for Tomcat

2012-04-17 Thread Patrick Tucker
Just export and zip your projects war folder. If you have anything specific to running inside eclipse, remove it from the export feature. -- 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://g

Re: Exclude gwt-dev.jar from a war deploy for Tomcat

2012-04-17 Thread Freddie Jefferson
1) Google Compile (its a right click menu option) 2) Copy and past the war folder to your desktop. 3) Rename the war folder to the name of your project. 4) Move your project to tomcat's webapps directory. As for the other questions, i have no answers for them, but the above steps will satisfy you

Re: Exclude gwt-dev.jar from a war deploy for Tomcat

2012-04-17 Thread JoyaleXandre
I've created the WAR file with the Deploy Module function. Then I opened it with a zip program and deleted the gwt-dev.jar and junit.jar file. I published my WAR file as normally and everythings was good. I use Jetty server instead of Tomcat. Le mardi 17 avril 2012 10:19:37 UTC-4, JoyaleXandre

Re: Exclude gwt-dev.jar from a war deploy for Tomcat

2012-04-17 Thread JoyaleXandre
've created the WAR file with the Deploy Module function. Then I opened it with a zip program and deleted the gwt-dev.jar and junit.jar file. I published my WAR file as normally and everythings was good. I use Jetty server instead of Tomcat. Le mardi 17 avril 2012 10:19:37 UTC-4, JoyaleXandre a

Re: How to track native browser scroll up-down movement

2012-04-17 Thread Deepak Singh
I want to use plain html only because in my whole project i have not used LayoutPanels, its only plain html with uibinders. I believe the work can be achieved with a bit of css only. The first question is how to track the scroll movement by user? And the 2nd question is what could be the best css

Re: How to track native browser scroll up-down movement

2012-04-17 Thread Aidan O'Kelly
I have not used this, but: http://google-web-toolkit.googlecode.com/svn/javadoc/latest/com/google/gwt/user/client/Window.html#addWindowScrollHandler(com.google.gwt.user.client.Window.ScrollHandler) Should help you track the users scrolling. On Tue, Apr 17, 2012 at 11:08 PM, Deepak Singh wrote:

Re: RequestFactory and @OneToMany association

2012-04-17 Thread Daniel Mauricio Patino León
Yes was the issue. Thank you. Aidan El 16 de abril de 2012 15:27, Aidan O'Kelly escribió: > You'll probably need: > with("parents", "parents.childs") > > getChilds() is not a method on your Callback object.. > > 2012/4/16 Daniel Mauricio Patino León > >> Iam stuck here! any help would be appre

Re: bizarre yet predictable triple and interleaved call to servlet when using Chrome GWT devmode

2012-04-17 Thread Daniel Wilkerson
This mystery is solved. http://stackoverflow.com/questions/10137389/bizarre-yet-predictable-triple-and-interleaved-call-to-servlet-when-using-gwt-de I think it would be best if webAppCreator generated HTML having absolute paths rather than relatives paths to the generated JavaScript. The compiler

Re: in GWT devmode a simple web.xml file not is mapping a URL to a .jsp, even though when in welcome-file-list the .jsp is found

2012-04-17 Thread Daniel Wilkerson
This mystery is solved. http://stackoverflow.com/questions/10184020/in-gwt-devmode-a-simple-web-xml-file-not-is-mapping-a-url-to-a-jsp-even-though While bug resulted from me not understanding that a servlet container is basically a chroot bubble (and therefore redefining the notion of an absolute

Re: Resolution Dependent ImageBundles

2012-04-17 Thread Joseph Lust
Note quite what you're looking for, but why not use SVG for many of these graphics? In most cases the result will be smaller than a png and you will no longer need to worry about resolution creep. This is what we used for our ipad app. Joe -- You received this message because you are subscrib