Re: NumberFormat and German Locale

2011-07-12 Thread tdk
Tom, Rob, thanx for this valuable information. That default is not default is quite interesting, I wasn't aware of that. But then the question is, how do I change the NumberFormat so that it uses the set locale, eg de_DE, instead of default? I have not been able to find/understand a way to do

Re: Modal Window

2011-07-12 Thread Navindian
I think Dialog Box is available in GWT. On Tue, Jul 12, 2011 at 2:10 AM, Scott Purcell spurcell...@gmail.comwrote: Hello, I have the need to convert a flex application into a GWT applcation. Only problem I am facing right now (analysis) is finding a modal window widget. Does GWT have one?

GWT Timer..

2011-07-12 Thread sanjay kanwar
Hi There, I need to set up a timer of 2minutes and along with the need to show a Battery with a percentage value.\ I hav to write the client side code for this task. Any help would be appreciated. thanks in Advance -- Regards Sanjay Kanwar -- You received this message because you are

Re: GWT Timer..

2011-07-12 Thread Adolfo Panizo Touzon
Hi, look at this link, http://google-web-toolkit.googlecode.com/svn/javadoc/1.5/com/google/gwt/user/client/Timer.html 2011/7/12 sanjay kanwar sanj.kan...@gmail.com Hi There, I need to set up a timer of 2minutes and along with the need to show a Battery with a percentage value.\ I hav to

Re: Modal Window

2011-07-12 Thread tdk
yes, DialogBox is avaliable so are various other widgets which can be set to modal. But NOTE: if these widgets are visible, your application will not stop! What happens is, that all (mouse) events are caught by GWT so you won't be able to click on anything else but your modal widget. -- You

Re: Very rare error window (Failed to parse: ?xml version=1.0...)

2011-07-12 Thread Rafa
If anyone is interested ... It solved the error. It was a matter of exception handling on the server. When the servlet ended their action was not executed well and commit to entering the next time the transaction was not closed properly. On 11 jul, 09:36, Rafa efilnikefu...@gmail.com wrote:

Re: NumberFormat and German Locale

2011-07-12 Thread Thomas Broyer
You're confusing the syntax of the pattern you give to NumberFormat for parsing, and then the use of that NumberFormat within the context of a locale. What you *give* to NumberFormat is locale-insensitive: #,##0.0## When you have that NumberFormat instance, what it does then depends on the

Re: How to detect if a Popup is showing

2011-07-12 Thread Thomas Broyer
PopupPanels append themselves to RootPanel.get(), so you can loop over RootPanel.get().getChildren() and whenever you see a PopupPanel you can ask if it isShowing(). -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion

Re: Call on a GWT module from a servlet

2011-07-12 Thread Sethu
Hi Magno, Thanks for the reply. I will try doing that. Thanks Sethu On Jul 11, 4:21 pm, Magno Machado magn...@gmail.com wrote: You can have the servlet output an html page that loads your gwt app (that is, it load the

keyPressEvent before character is there -TextBox

2011-07-12 Thread tanteanni
i am trying to implement a live search with a text box. i am triggering the search on KeyPressEvent. My Problem is, that the event is fired before the text is set. so on keyPressEvent i can't get the current text from textBox. Ho to solve this? Is there an event better suited for lifesearch?

Resizing display regions in a complex ui

2011-07-12 Thread Anders
Hi, Reading Thomas Broyer's post 'GWT 2.1 Activities – nesting? YAGNI!' (check it out here http://tbroyer.posterous.com/archive/9/2010) really cleared things up with regards on how to handle more complex ui designs. Abandoning the concept of nesting and going for a couple of activity mappers to

Re: keyPressEvent before character is there -TextBox

2011-07-12 Thread cruser
Look at using the KeyUpEvent, that should work -- 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/-/LlAY3gyaX4oJ. To post to this group, send email to

Aw: keyPressEvent before character is there -TextBox

2011-07-12 Thread Jens
Use KeyUpEvent/Handler instead of KeyPressEvent/Handler. Also you should build in a small timer so you do not fire server requests on every KeyUpEvent. So on each KeyUpEvent you schedule the same timer instance that should execute in the next 50ms (just an example). The timer then does the

Re: Designer Problem : « uibinder template should be in client package »

2011-07-12 Thread cruser
Sorry where check the build path settings? I am not using maven (as far as I know) and this is still happening. Any tips for a beginner? -- 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: Modal Window

2011-07-12 Thread Navindian
How to disable the shadow of dialogbox. On Tue, Jul 12, 2011 at 12:56 PM, tdk kloe...@ics.de wrote: yes, DialogBox is avaliable so are various other widgets which can be set to modal. But NOTE: if these widgets are visible, your application will not stop! What happens is, that all (mouse)

Re: GWT 2.1+ Compiler issues

2011-07-12 Thread Brian
Thats interesting. I also have a quad core AMD with 8GB of RAM. Its 64 bit windows running on a Dell Studio XPS 7100. I wonder if anyone else has experienced this. It just seems really strange that moving from one version to another would have such an impact on compilation time. On Jul 11, 6:22 

Re: NumberFormat and German Locale

2011-07-12 Thread tdk
On 12 Jul., 10:26, Thomas Broyer t.bro...@gmail.com wrote: You're confusing the syntax of the pattern you give to NumberFormat for parsing, and then the use of that NumberFormat within the context of a locale. What you *give* to NumberFormat is locale-insensitive: #,##0.0## When you have

RPC Replacement

2011-07-12 Thread Joe Cole
We have applications that are installed on mobile devices (i.e. playbook, ipad) that we can't guarantee will be updated every time we update our server (appstore delays). This means that if the objects sent over RPC change, or the RPC format itself changes, then the mobile clients will no longer

Aw: Re: NumberFormat and German Locale

2011-07-12 Thread Jens
NumberFormat.getDecimalFormat() just gives you a formatter using a default format string. If you want to use your own formatting string you have to use NumberFormat.getFormat(your string). In your case you have to use NumberFormat.getFormat(#,##0.0##). The symbols , and . are special symbols

Re: Anybody has simple way to get Token when implement XRSF protection.

2011-07-12 Thread batosai
What would happen in the case of a load balancer and rpc requests switching from one server to another from the same client , is sticky sessions required ? On Jul 6, 4:32 pm, David Chandler drfibona...@google.com wrote: Hi Joey, The XSRF token is stateless so you only need to call the

how to add javascript tag in ui.xml file

2011-07-12 Thread phani varma gokaraju
can anyone help how to add the below javascript tag in ui.xml script type=IN/Login data-onAuth=loadData/script -- 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

Re: Anybody has simple way to get Token when implement XRSF protection.

2011-07-12 Thread Elhanan Maayan
i don't think sticking session applies here in case of clustering xsrf protection as i understand it is meant to ensure each REQUEST came from the actual client, and not adjacent website which activates your request via javascript code injection (which cannot really get your cookie because of

Re: tab layout suggestions needed

2011-07-12 Thread Vik
anyone on this please? Thankx and Regards Vik Founder http://www.sakshum.org http://blog.sakshum.org On Sat, Jul 9, 2011 at 5:57 PM, Vik vik@gmail.com wrote: Hie Is it possible to open tabs dynamically and close them like we do for browsers using gwt ? Thankx and Regards Vik

UiBinder gwt designer not working

2011-07-12 Thread cruser
I created a new UiBinder class. Opening the myclass.ui.xml file works fine, however when I click the design tab I get the error message UiBinder template should be in client package. This is confusing because it does exist in the client package. How can I fix this issue? I have been to the

Re: tab layout suggestions needed

2011-07-12 Thread Ashwin Desikan
What do you mean dynamically? Say on click of a new tab button? Yes that can be done. Refer to tablayout showcase and documentation. It show how to add tabs using code. Thanks Ashwin Sent from my iPhone On Jul 12, 2011, at 5:29 PM, Vik vik@gmail.com wrote: anyone on this please?

Re: GWT 2.1+ Compiler issues

2011-07-12 Thread Ashwin Desikan
I have a quad core as well and have experienced slowness. I think it more so to do with validating XML files. I don't believe it has anything to do with requestfactory. Both validation and context assist are painfully slow. Thanks Ashwin Sent from my iPhone On Jul 12, 2011, at 3:41 PM,

Re: Designer Problem : « uibinder template should be in client package »

2011-07-12 Thread kojo
I can confirm that the GWT maven plugin does add the exclusion ** to build path source folder - src/main/resources. When I remove the exclusion in eclipse and update the maven configuration from eclipse, the exclusion is re-added. Perhaps changing the pom.xml file would fix this. @cruser find

Re: NumberFormat and German Locale

2011-07-12 Thread tdk
ok, thanks everyone who contribute. My conclusion is quite simple: since I only have a localized pattern, I won't be able to use that and format the numbers acc. to it. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group,

Re: Resizing display regions in a complex ui

2011-07-12 Thread Thomas Broyer
On Tuesday, July 12, 2011 11:52:27 AM UTC+2, Anders wrote: Hi, Reading Thomas Broyer's post 'GWT 2.1 Activities – nesting? YAGNI!' (check it out here http://tbroyer.posterous.com/archive/9/2010) Direct link: http://tbroyer.posterous.com/gwt-21-activities-nesting-yagni really cleared

Calling placecontroller.goto from within the activity mapper

2011-07-12 Thread P.G.Taboada
Hi, I have to do a place redirect in my app. Actually I am calling goto inside of my activity mapper, it is working. I just wanted to get feedback to see if I am doing it right. When I have to do a place redirect, I am - returning null in the activity mapper - finally scheduling a goto to

Re: tab layout suggestions needed

2011-07-12 Thread Vik
hie the demo does not show the adding new tab etc http://gwt.google.com/samples/Showcase/Showcase.html#!CwTabLayoutPanel Thankx and Regards Vik Founder http://www.sakshum.org http://blog.sakshum.org On Tue, Jul 12, 2011 at 6:09 PM, Ashwin Desikan ashwin.desi...@gmail.comwrote: What do you

Re: tab layout suggestions needed

2011-07-12 Thread ashwin.desi...@gmail.com
look at the source code, the initialize method shows how to add new tabs. You can add a button in one of these tab panels and on click of it create new tabs. Thanks Ashwin On Tue, Jul 12, 2011 at 7:21 PM, Vik vik@gmail.com wrote: hie the demo does not show the adding new tab etc

Re: Inifnite prompting to download GWT Developer Plugin

2011-07-12 Thread FabioV
Hi, can you double check a few things? 1) double check it is really installed. go to control panel, installed apps and check if it is really installed. 2) assuming it is installed, can you make sure the plugin is enabled to run? maybe the simplest thing is to reset IE settings, close open and

Re: Resizing display regions in a complex ui

2011-07-12 Thread Anders
Thanks for the quick reply! Sounds like the DockPanelLayout is the way to go. In my little proof-of-concept app I got lost in what you described as the 'non-trivial size computation' using just a LayoutPanel with manual resizing. Hence the question here! Keep up the good work with your blog! On

Re: comparing GWT and jsp apps - why javscript apps different from html apps

2011-07-12 Thread dreamer
I think I should give little more explaining where I see, GWT may improve and become Visual Basic of web. For the moment if we forget ajax. When I converted VB application into web, I draw parallels from VB forms to HTMLs and developed as such, so flow remains same and user transition smooth.

Re: Calling placecontroller.goto from within the activity mapper

2011-07-12 Thread P.G.Taboada
Just in case someone is wondering why I did not use a FilteredActivityMapper: the activity manager would work perfectly, the problem is the ActivityController: it does not see the place redirect. This way the place controller does not really know where the application is. Here is my problem: I

Re: GWT Timer..

2011-07-12 Thread P.G.Taboada
If you are GWT 2.x have a look at: http://google-web-toolkit.googlecode.com/svn/javadoc/2.0/com/google/gwt/core/client/Scheduler.html Scheduler.get().scheduleFixedPeriod(Scheduler.RepeatingCommand cmd, int delayMs) Schedules a repeating command that is scheduled with a constant

Re: Resizing display regions in a complex ui

2011-07-12 Thread Mauro Bertapelle
you may find this thread interesting: http://groups.google.com/group/google-web-toolkit/browse_thread/thread/ba4b88d2d54b0cd/97157d8e649c716e On Jul 12, 4:07 pm, Anders dr.kr...@gmail.com wrote: Thanks for the quick reply! Sounds like the DockPanelLayout is the way to go. In my little

Declaring method calls as async/ scheduled via annotations?

2011-07-12 Thread P.G.Taboada
Hi, this is something that I really would appreciate to see in GWT: @Scheduled( Scheduled.Deferred ) private void doSomeUiUpdates() { //... } And so on... Waht do you think? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to

Re: Calling placecontroller.goto from within the activity mapper

2011-07-12 Thread Thomas Broyer
I can see several ways of fixing this (depending on the exact use case you're trying to solve): - assuming this is on initial load: have your have to go to here first logic in the PlaceTokenizer, to return the HaveToGoHereFirstPlace - add a flag to your somewhere places that, when set,

Object and wmode

2011-07-12 Thread Ramon Salla
Hi, I use a FlowPanel and the method getElement().setInnerHtml(String html) to use an activex object custom video player like this: String object = object ... param name=x value=y/ param name=z value = o ... /object. The activeX object is working nice but I need to use the wmode parameter in

Re: Anybody has simple way to get Token when implement XRSF protection.

2011-07-12 Thread David Chandler
It depends on what you specify as your token in XsrfTokenServiceServlet (see the Javadoc). If you use JSESSIONID, then you would need sticky sessions or session replication as with any use of server sessions. /dmc On Tue, Jul 12, 2011 at 7:13 AM, batosai tariq.albabt...@gmail.com wrote: What

Errors in 'jar:file:/C:/GWT_PROJECTS/gwt-2.4.0.beta/gwt-widgets-0.1.3.jar!/org/gwtwidgets/client/ui/gsearch/GResult.java'

2011-07-12 Thread Harshad Java techy
Hi, I build my project same as like sample Hello project in gwt-2.4.0.beta directory structure. while compiling the project I am facing following error messages while building the application through the ant script. I am building the existing GWT application but I dont know previously in which

Need suggestions on supporting both Web and Desktop front-end.

2011-07-12 Thread Warren Tang
I need to build an application which has both a web font-end and a desktop front-end. There is a relational database. Lightweight frameworks are preferred. My previous project was done with SmartGWT + GWT + MyBatis. And it is the only java project I've done. Currently my thought is GWT +

ColumnSortList serializing

2011-07-12 Thread Ambrus Péter
Hi, I would like to create a CellTable which gets data from the server through RPC. That's good, no problem with it. Then I'd like to add some sorting feature with async sorting on the server. That's why I'd like to push data table's ColumnSortList through RPC to the server. Unfortunately

Server push With SmartGWT

2011-07-12 Thread Atd
Hi I would like to ask about using Sever push technology and how it can be implemented using SmartGWT 2.4 ? can i use GWT-Comet With SmartGWT ?? Thank -- 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: Need suggestions on supporting both Web and Desktop front-end.

2011-07-12 Thread Juan Pablo Gardella
gwt4air perhaps help. 2011/7/12 Warren Tang warren.c.t...@gmail.com I need to build an application which has both a web font-end and a desktop front-end. There is a relational database. Lightweight frameworks are preferred. My previous project was done with SmartGWT + GWT + MyBatis. And it

Re: Instructions on how to use gwt 2.4rc ?

2011-07-12 Thread arne
I had a wrong gwt-version as a dependency for the gwt-maven-plugin. See here: http://stackoverflow.com/questions/6649483/problems-with-gwt-2-4/6662321#6662321 Thomas Broyer figured it out :) On Jul 11, 1:29 pm, Marius Gerwinn marius.gerw...@googlemail.com wrote: Same problem here. Anyone got a

Re: TabLayoutPanel Navigation Content loading

2011-07-12 Thread Mark Wengranowski
Thanks but i think i prefer to avoid external libraries and also use UIBinder. I think i've figured out how to do it. Now all i have to do is wire everything together. My solution adds a new tab of type widget (which can be any one of the pages i created) to the tab panel before the index i want

Re: Anybody has simple way to get Token when implement XRSF protection.

2011-07-12 Thread Jason482
I tried to implement the static initialization as you describe, but I seem to be running into a race condition where the XSRF callback has not happened before my getSomeService() is invoked, thus I get SomeService back without an XsrfToken. I have been trying to think of a way around this

Re: A gwt-sample. Integrate Spring, JPA2.

2011-07-12 Thread Juan Pablo Gardella
Hi folks, I update the sample. I add an Hibernate Filter, an alternative to DTOs or Gilead to the solve the problem of serialization in GWT-RPC comunication. See http://code.google.com/webtoolkit/articles/using_gwt_with_hibernate.html. With this filter, proxys are put to null and initialize

Re: A gwt-sample. Integrate Spring, JPA2.

2011-07-12 Thread Adolfo Panizo Touzon
Interesting! Thanks!. 2011/7/12 Juan Pablo Gardella gardellajuanpa...@gmail.com Hi folks, I update the sample. I add an Hibernate Filter, an alternative to DTOs or Gilead to the solve the problem of serialization in GWT-RPC comunication. See

Re: combine GWT application from several modules coming from JARs or OSGI bundles

2011-07-12 Thread vitaly.paku...@googlemail.com
Alexey, I develop application on Vaadin (vaadin.com). It uses GWT for rendering and I have same problems like you. A modular application uses plugins or bundles (in term of OGSi in dynamic way. It means If you use plugin then necessary resourses avilavble only for usage time (no any static

Re: What's the current state of the UiBinder templates for CellList

2011-07-12 Thread Ernesto Oltra
I've seeing some UiRenderer tests in code trunk and if I understand them you can build your cell using Widgets, is it correct? And substitute some values/placeholders in it. That would be exactly the thing I was searching for. Any hints on how to use trunk version of GWT with Eclipse? I have

Re: GWT 2.1+ Compiler issues

2011-07-12 Thread David Chandler
Possibly related: https://groups.google.com/forum/#!msg/google-web-toolkit/IWPDWYD8DbA/VNKkCt7qwrMJ http://code.google.com/p/google-web-toolkit/issues/detail?id=5261 Such a huge jump in memory usage with 2.3 is certainly not typical. /dmc On Tue, Jul 12, 2011 at 8:43 AM, Ashwin Desikan

Aw: RPC Replacement

2011-07-12 Thread Harald Pehl
Another project you can take a look at is Piriti: http://code.google.com/p/piriti/ It's a client side XML / JSON mapper. Piriti is able to (de)serialize fairly complex JSON and XML data. See http://code.google.com/p/piriti/wiki/Features for a more detailed description. - Harald -- You

Re: A gwt-sample. Integrate Spring, JPA2.

2011-07-12 Thread Kayode Odeyemi
Thanks Juan. I hit a road block on this sometime ago. It's good to have this online. I only saw this implementation in the book Google App Engine Java and GWT Application Development for the Connectr App sample. Thanks a lot. On Tue, Jul 12, 2011 at 5:23 PM, Adolfo Panizo Touzon

Re: GWT 2.1+ Compiler issues

2011-07-12 Thread Jeff Larsen
I put this in the issue tracker, but I wrote a groovy script to delete every file in the temp directory. Feel free to adapt it to however you need. Change the first line to the correct directory however. def directory = C:\\Documents and Settings\\jlarsen\\Local Settings\\Temp //CHANGE ME

$wnd.Array()

2011-07-12 Thread Matt Curry
Hey guys, I am integrating with a library that has a function that looks like this: function splat(obj) { if (!obj || obj.constructor !== Array) { obj = [obj]; } return obj; } I was sending JsArray instances to it and noticed that it was always wrapping

Which version of javax.validation.validation-api?

2011-07-12 Thread Sébastien Tromp
Hello, I am currently trying to integrate the gwt-validation framework ( http://code.google.com/p/gwt-validation) in my application. While debugging through javax.validation.Validation.byDefaultProvider(), I see something puzzling: the line highlighted by the debugger (line 125) does not

Re: ColumnSortList serializing

2011-07-12 Thread peerawat poombua
Actually you can use Collection.sort with the Comparator in the server side (if you use Java as your server). I have used it in order to do the multi-level sorting because Let's see some example of Collection.sort and Comparator here

Re: Which version of javax.validation.validation-api?

2011-07-12 Thread Sébastien Tromp
I forgot to specify that this desynchronization happens only the on the client side of GWT. On the server side, it looks like the proper version of validation-api is used. -- seb 2011/7/12 Sébastien Tromp sebastien.tr...@gmail.com Hello, I am currently trying to integrate the gwt-validation

Problem settings breakpoints

2011-07-12 Thread Michał Błażejczyk
Hi all, I'm fairly new to GWT development. I've set up everything like the documentation says. I'm using Eclipse Indigo on Windows 7, and I have the GWT plug-in. The problem is that when I set breakpoints, the program never stops even though the execution goes through them. This happens on

Re: Which version of javax.validation.validation-api?

2011-07-12 Thread Nick Chalko
GWT 2.4 beta include support for built in Validation take a look at http://code.google.com/p/google-web-toolkit/wiki/BeanValidation -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

Speech to Text

2011-07-12 Thread gangurg gangurg
Folks , I am using GWT on my client and want to know if there is any way I could speech to Text Search Translation . Basically after every pause the user makes on a word I want to go to the server and fetch some results for that word . I dont use GAE. -- You received this message because you

Re : $wnd.Array()

2011-07-12 Thread Thomas Broyer
Well, first, fix the library so it works cross-window/cross-frame. As a workaround, I think you can use the xs linker, which won't use an iframe: add-linker name=xs / -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion

Re: Which version of javax.validation.validation-api?

2011-07-12 Thread Sébastien Tromp
Thanks for the pointer. I'll just wait for 2.4 to implement a proper validation mechanism then. Thanks :) -- seb 2011/7/12 Nick Chalko ncha...@google.com GWT 2.4 beta include support for built in Validation take a look at http://code.google.com/p/google-web-toolkit/wiki/BeanValidation --

Re: Need suggestions on supporting both Web and Desktop front-end.

2011-07-12 Thread Alain Ekambi
If you want to turn you GWT applicattion into a desktop application Adobe AIR is a good option. Appcelerator Titanium is also a solid but i personally prefer AIR. 2011/7/12 Juan Pablo Gardella gardellajuanpa...@gmail.com gwt4air perhaps help. 2011/7/12 Warren Tang warren.c.t...@gmail.com

FlexTable and clickHandler depreciated?

2011-07-12 Thread seven.reeds
Hi, gwt: 2.3.0 eclipse: 3.6.2 I must be doing something wrong. I have a FlexTable and I try to add a ClickHandler but I am told it is depreciated. FlexTable panel = new FlexTable(); SponsorrList() { initWidget(panel);

Re: Need suggestions on supporting both Web and Desktop front-end.

2011-07-12 Thread Magno Machado
I never used it before, but afaik requestfactory can be used from non gwt clients You could write your backend in java exposing services through requestfactory and consume them from the gwt and swing frontend Anyway, can't the desktop users simply use the gwt app? On Tue, Jul 12, 2011 at 6:15

Re: GWT 2.1+ Compiler issues

2011-07-12 Thread softmahi
Hi here whats it stands for ? -- 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/-/_uzrIEiP7RIJ. To post to this group, send email to

Need help on GWT hot deployment on JBOSS in Eclipse

2011-07-12 Thread Mahesh Halkatti
*Need help on GWT hot deployment on JBOSS in Eclipse* -- 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

Re: Need suggestions on supporting both Web and Desktop front-end.

2011-07-12 Thread Alain Ekambi
Honestly i dont know if you can use Requestfactory with non GWT client (never tried). Maybe somebody else can answer that. The advantage of using appcelerator or AIR is that you wont need to rewrite the UI code. You can just take the same code you used for the webclient and it will work inside

Re: Need suggestions on supporting both Web and Desktop front-end.

2011-07-12 Thread Thomas Broyer
On Wednesday, July 13, 2011 12:10:50 AM UTC+2, Alain Ekambi wrote: Honestly i dont know if you can use Requestfactory with non GWT client (never tried). Maybe somebody else can answer that. Yes you can. GWT 2.4 should come with requestfactory-client.jar that can be used in any Java app

How to set ListBox selection with UiBinder?

2011-07-12 Thread Thad
Just that: How do I set a ListBox's selection with UiBinder? I've tried g:ListBox g:item value='1' first /g:item g:item value='2' selected='true' second /g:item g:item value='3' third /g:item /g:ListBox but selected disappears in the final HTML. I tried g:ListBox

Re: Need help on GWT hot deployment on JBOSS in Eclipse

2011-07-12 Thread gangurg gangurg
Whats the problem ? On Tue, Jul 12, 2011 at 3:04 PM, Mahesh Halkatti softm...@gmail.com wrote: *Need help on GWT hot deployment on JBOSS in Eclipse* -- 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: Need suggestions on supporting both Web and Desktop front-end.

2011-07-12 Thread Magno Machado
The advantage of using appcelerator or AIR is that you wont need to rewrite the UI code. You can just take the same code you used for the webclient and it will work inside AIR for example. That have saved us a lot of work :) If it's the very same code, same ui, same app, why don't have only the

Re: Need suggestions on supporting both Web and Desktop front-end.

2011-07-12 Thread Alain Ekambi
Well the front end is GWT(actually Ext-GWT). The application has a web AND a desktop client. For the desktop client instead of rewriting everything let s say in C++ , we reuse the GWT code of the web client and run it inside AIR. So you basically have 2 applications (web + desktop) sharing the

Controlling BIRT with GWT

2011-07-12 Thread mike b
The BIRT dev environment has a way of exporting javascript to embed in HTML in the same way that Google Maps does. Has anyone successfully used JSNI to integrate BIRT into GWT? Easy? Painful?? Any unexpected problems? What I need to do is have a complex widget filter thru 6 or 7

Re: FlexTable and clickHandler depreciated?

2011-07-12 Thread Gal Dolber
Panels do not have event handlers in general, you can use FocusPanel or force the event on the FlexTable with panel.addHandler(ClickEvent.getType(), clickHandler); On Tue, Jul 12, 2011 at 6:32 PM, seven.reeds seven.re...@gmail.com wrote: Hi, gwt: 2.3.0 eclipse: 3.6.2 I must be doing

Re: How to detect if a Popup is showing

2011-07-12 Thread Craig Mitchell
Thanks Thomas. Much cleaner that way! New code: /** * @return the number of modal popups currently showing */ public static int getNumPopupsShowing() { int result = 0; for (int i=0; iRootPanel.get().getWidgetCount(); i++) { Widget widget = RootPanel.get().getWidget(i); if (widget instanceof

Re: How to detect if a Popup is showing

2011-07-12 Thread Craig Mitchell
Thanks Thomas. Much cleaner that way! New code: /** * @return the number of modal popups currently showing */ public static int getNumPopupsShowing() { int result = 0; for (int i=0; iRootPanel.get().getWidgetCount(); i++) { Widget widget = RootPanel.get().getWidget(i); if (widget instanceof

Re: Need suggestions on supporting both Web and Desktop front-end.

2011-07-12 Thread Warren Tang
The desktop application works offline (do all the job locally without ever connecting to a server). And the business code can work with or without a database. So AIR may not be the choice as I'm not so confident to compile the business code into Javascript (AIR). You could write your backend

Re: Need suggestions on supporting both Web and Desktop front-end.

2011-07-12 Thread Warren Tang
The desktop application works offline (do all the job locally without ever connecting to a server). And the business code can work with or without a database. So AIR may not be the choice as I'm not so confident to compile the business code into Javascript (AIR). You could write your backend

Re: How to set ListBox selection with UiBinder?

2011-07-12 Thread -sowdri-
Did you try doing the same with g:ListBox *uifield=myListbox* g:item value='1' first /g:item g:item value='2' selected='true' second /g:item g:item value='3' third /g:item /g:ListBox @UiField *Listbox myListbox;* public constructor(){ //...

Re: Aw: keyPressEvent before character is there -TextBox

2011-07-12 Thread tanteanni
thx thats it (KeyUp works fine). (in meantime i also tried keyDownEvent :-|) -- 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/-/0_a7A1RCek8J. To

Re: [gwt-contrib] Review for Issue 4862

2011-07-12 Thread Felix H. Dahlke
I've added those two as reviewers, thanks for the hint. As you can probably guess, I'm not very familiar with the process :) On Jul 11, 2011, at 8:18 PM, Eric Ayers wrote: Lining up and adding a specific reviewer helps, because then the review shows up on their code review dashboard. In

[gwt-contrib] [google-web-toolkit] r10439 committed - Cherry-pick r10437 into 2.4 release branch.

2011-07-12 Thread codesite-noreply
Revision: 10439 Author: b...@google.com Date: Mon Jul 11 11:27:30 2011 Log: Cherry-pick r10437 into 2.4 release branch. http://code.google.com/p/google-web-toolkit/source/detail?r=10439 Modified: /releases/2.4/user/src/com/google/gwt/uibinder/rebind/model/OwnerFieldClass.java

[gwt-contrib] [google-web-toolkit] r10440 committed - After an enum is ordinalized, any static methods generated as staticIm...

2011-07-12 Thread codesite-noreply
Revision: 10440 Author: jbrosenb...@google.com Date: Mon Jul 11 09:47:54 2011 Log: After an enum is ordinalized, any static methods generated as staticImpl's should no longer be considered as such, since there is no longer an instantated instance being passed as the first arg to

[gwt-contrib] Performance improvements for ElementBuilder. (issue1477801)

2011-07-12 Thread jlabanca
Reviewers: rdcastro, Description: Performance improvements for ElementBuilder. The current version of ElementBuilder involves a lot of casting, which results in thousands of dynamic casts (runtime type checks) when building a large table. This change removes most of the unnecessary casts. All

[gwt-contrib] [google-web-toolkit] r10442 committed - Missing file Pruner.java from last submitted change.

2011-07-12 Thread codesite-noreply
Revision: 10442 Author: cromwell...@google.com Date: Mon Jul 11 14:42:59 2011 Log: Missing file Pruner.java from last submitted change. http://code.google.com/p/google-web-toolkit/source/detail?r=10442 Modified: /trunk/dev/core/src/com/google/gwt/dev/jjs/impl/Pruner.java

[gwt-contrib] Re: Make generator result caching framework api available publically. (issue1468804)

2011-07-12 Thread jbrosenberg
http://gwt-code-reviews.appspot.com/1468804/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: change to fix the JavaDoc error during build (issue1478801)

2011-07-12 Thread pdr
On 2011/07/12 17:50:51, Mark R Russell wrote: LGTM! http://gwt-code-reviews.appspot.com/1478801/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Updating npapi plugin to remove gwtId from Jso objects (idenity fix), (issue1469803)

2011-07-12 Thread codefu
http://gwt-code-reviews.appspot.com/1469803/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Updating npapi plugin to remove gwtId from Jso objects (idenity fix), (issue1469803)

2011-07-12 Thread jlabanca
On 2011/07/12 20:36:59, codefu wrote: LGTM http://gwt-code-reviews.appspot.com/1469803/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] [google-web-toolkit] r10445 committed - Updating test case to check for existence of indexOf() (=IE8)...

2011-07-12 Thread codesite-noreply
Revision: 10445 Author: cod...@google.com Date: Tue Jul 12 10:58:10 2011 Log: Updating test case to check for existence of indexOf() (=IE8) Review at http://gwt-code-reviews.appspot.com/1469803 Review by: jlaba...@google.com

[gwt-contrib] Re: JsoNormalizer did not give unique names to devirtualized (issue1467812)

2011-07-12 Thread zundel
http://gwt-code-reviews.appspot.com/1467812/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: JsoNormalizer did not give unique names to devirtualized (issue1467812)

2011-07-12 Thread zundel
On 2011/07/08 19:07:11, scottb wrote: Legally tho, it doesn't make sense for a single class to have more than one method with the same signature. Maybe that should be an assertion somewhere. On Thu, Jul 7, 2011 at 8:57 PM, mailto:cromwell...@google.com wrote: Should we really be

[gwt-contrib] Re: JsoNormalizer did not give unique names to devirtualized (issue1467812)

2011-07-12 Thread zundel
http://gwt-code-reviews.appspot.com/1467812/diff/1/dev/core/test/com/google/gwt/dev/jjs/impl/OptimizerTestBase.java File dev/core/test/com/google/gwt/dev/jjs/impl/OptimizerTestBase.java (right):

[gwt-contrib] [google-web-toolkit] r10446 committed - Reduces chances of deadlock when CompilingClassLoader and MultiParentC...

2011-07-12 Thread codesite-noreply
Revision: 10446 Author: to...@google.com Date: Tue Jul 12 13:27:01 2011 Log: Reduces chances of deadlock when CompilingClassLoader and MultiParentClassLoader are concurrently accessed from multiple threads. Review at http://gwt-code-reviews.appspot.com/1479801

  1   2   >