Re: ImageResource loading

2012-09-03 Thread Harold Comere
Hi, After further researches it seems not possible to load image loading without showing it on a visible Panel. Also i have not found how the read pixels from the ImageResource of the ClienBundle. The main issue is that i have to read images at any time, but as the RootLayoutPanel has its

Re: fundamental problems with predictive layout

2012-09-03 Thread Ümit Seren
How about using nested LayoutPanels? Or if you don't want to use LayoutPanels all the way but need resizing in one of the inner widget you could wrap it in a http://google-web-toolkit.googlecode.com/svn/javadoc/latest/com/google/gwt/user/client/ui/ResizeLayoutPanel.html . On Sunday,

Meteor DDP - or similar - with GWT?

2012-09-03 Thread Thomas Lefort
Anybody aware of a gwt library that would provide a publish/subscribe mechanism similar to the Meteor DDP? eg for live updates of clients when the database gets updated. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this

Re: Meteor DDP - or similar - with GWT?

2012-09-03 Thread Alain Ekambi
Have u had u look at errai from RedHat ? On Sep 3, 2012 10:29 AM, Thomas Lefort lefortho...@gmail.com wrote: Anybody aware of a gwt library that would provide a publish/subscribe mechanism similar to the Meteor DDP? eg for live updates of clients when the database gets updated. -- You

Re: FormPanel reset

2012-09-03 Thread Pullu
use fileUploadWidget.getElement().setPropertyString(value, ); when SubmitCompleteEvent is called. @UiHandler(uploadFileFormPanel) void handleuploadFileFormPanelSubmitComplete(SubmitCompleteEvent e){ uploadFile.getElement().setPropertyString(value, ); presenter.uploadCompleted(e); } On

Re: CellBrowser EditTextCell (not refreshing the cell)

2012-09-03 Thread Neil Patel
Hi, This solution worked for me: https://groups.google.com/d/msg/google-web-toolkit/sPRy0lqACsc/UJH-jvBNAcIJ On Tuesday, August 14, 2012 4:21:19 PM UTC+5:30, Arash wrote: Hi, I have changed the CellBrowser sample in showcase to render an EditTextCell for one of the columns. I would like to

Re: enable closure compiler

2012-09-03 Thread Manuel Carrasco Moñino
Hi all, FYI: gquery 1.2.0 has been released, it has the issue fixed. About the advantages of using the closure compiler apart from the size of the js, I'll add the optimization of jsni blocks in your app, for instance I tend to embed 3party code (like cordova.js etc) in jsni blocks to optimize

Re: Meteor DDP - or similar - with GWT?

2012-09-03 Thread Thomas Lefort
I am looking at Errai CDI right now, thanks for your suggestion. On Monday, 3 September 2012 10:36:16 UTC+2, nino wrote: Have u had u look at errai from RedHat ? On Sep 3, 2012 10:29 AM, Thomas Lefort lefor...@gmail.com javascript: wrote: Anybody aware of a gwt library that would provide a

fundamental problems with predictive layout

2012-09-03 Thread Andrei
You can build any layout in GWT that you can build with plain HTML and CSS, i.e. any layout you like. I build very complex UIs in GWT, and I very rarely use resize handlers or getOffsetWidth()/getOffsetHeight() methods, because: (a) I use a layout panel for page structure, an it resizes by

Re: fundamental problems with predictive layout

2012-09-03 Thread Magnus
Am Montag, 3. September 2012 14:08:27 UTC+2 schrieb Andrei: Maybe if you can give a specific example of a problem you face, we can suggest a solution. Hello, I actually need a composite panel TournamentField that consists of two widgets, a label and a button at the right of the label. I

Re: fundamental problems with predictive layout

2012-09-03 Thread Magnus
Am Montag, 3. September 2012 10:09:45 UTC+2 schrieb Ümit Seren: How about using nested LayoutPanels? Or if you don't want to use LayoutPanels all the way but need resizing in one of the inner widget you could wrap it in a

Re: fundamental problems with predictive layout

2012-09-03 Thread Ümit Seren
Are you changing the sizes of the layoutPanels dynamically? Because if you don't it should work out of the box. If you are changing it dynamically then you might run into this bug (http://code.google.com/p/google-web-toolkit/issues/detail?id=7188). I found following code snippet in one of my

Re: fundamental problems with predictive layout

2012-09-03 Thread Jens
In pure HTML I would do it like: http://jsfiddle.net/EHCGu/ you can drag the vertical splitter to change the size of the result and the label div fills all the space while the button is float:right. No need to use any onResize() JavaScript as the browser takes care of the size. Maybe you can

Re: IE 7 / 8 issue

2012-09-03 Thread Deepak Singh
I am still stuck with the problem. On development i am getting the following error 22:05:33.168 [ERROR] [yatrafinderdevenv] Uncaught exception escaped com.google.gwt.event.shared.UmbrellaException: Exception caught: (TypeError)

Re: IE 7 / 8 issue

2012-09-03 Thread Jens
In com.pdstechi.activity.client.PackageFullDetails.init(PackageFullDetails.java:139) you call getStyle().setProperty(wordWrap, breakWord); but I think it should be getStyle().setProperty(wordWrap, break-word); -- J. -- You received this message because you are subscribed to the Google

Re: IE 7 / 8 issue

2012-09-03 Thread Deepak Singh
Thanks. It worked. On Mon, Sep 3, 2012 at 10:52 PM, Jens jens.nehlme...@gmail.com wrote: In com.pdstechi.activity.client.**PackageFullDetails.init(** PackageFullDetails.java:139) you call getStyle().setProperty(wordWrap, breakWord); but I think it should be

Re: GwtChosen: make your select boxes much more user-friendly

2012-09-03 Thread Julien Dramaix
Thanks all ! The plugin was intensively tested this week. A new release was built today: GwtChosen 1.2.0. Update your pom.xml or download the jar file here : http://code.google.com/p/gwtquery-plugins/downloads/detail?name=gwtchosen-1.0.2.jar Julien On Fri, Aug 31, 2012 at 5:21 PM, Joseph Lust

Re: How do you get uiBinder to inject its style code immediately?

2012-09-03 Thread Artem Artemyev
Hello! Im trying to find a solution too and I stop on your resolving way: static boolean in the widget and injection by StyleInjector. But invoking StyleInjector.inject( style.getText(), true ); force inject styles and after few moments styles injected again! It happens because

Very weird behavior of OptionalFieldEditor

2012-09-03 Thread Jeff
Hi, I am using the following editor to support a nullable list: public class NullableListEditorT, E extends EditorT extends Composite implements IsEditorOptionalFieldEditor ListT, ListEditorT,E { private ListEditorT, E list = ListEditor.of(new ListEditorSource()); private final

GWT Script running too long error - and solution?

2012-09-03 Thread zsomi83
Hi All, I have the following problem: A piece of code running too long for the Browsers (both for IE and Mozilla). This is a while cycle searching for RootPanel of a widget. While I was debugging I found that if I put Window.alert it operates correctly, no pop-up from browser. Finally the

Re: DevMode not working in Chrome after update

2012-09-03 Thread Jan Lolling
I installed the plugin and it looks good in the extension page but it still not work. I use Chrome 22 under OSX Lion. Is there an older version of Chrome required? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on

How long is the reviewing process?

2012-09-03 Thread Jeff
Hi, Friday noon, I posted a question about weird behavior of OptionalFieldEditor. But I haven't seen it online yet. Is it expected? thanks, -Jeff -- 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 Dev Plugin for Google Chrome

2012-09-03 Thread Jan Lolling
I have the same problem. Now the plugin is installed but it is still not working. -- 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/-/Ln__M-zzjowJ.

GWT Developers plugin for chrome

2012-09-03 Thread ankit bansal
Hi, I am unable to add GWT developers plugin for chrome. Each time I add it, I get a message saying Extensions,tools can be added for chrome store. Can someone help me in adding it? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view

Re: GWT 2.5 RC1 Is Here!

2012-09-03 Thread Jan Lolling
It would be great if it worked. I installed it with the older Eclipse version Indigo (that was OK), but there is no way to get the web app running in Chrome. The GWT dev plugin does not work! He guys, are there any tests before publishing? -- You received this message because you are

abstract base classes, error

2012-09-03 Thread timp
Ok my question hasn't been posted, but I've found, what I think is the solution. I'm not exactly certain if I'm doing things correctly yet, but, to save some other poor soul 8 hours of their life. If you are having problems with OutputStream or any other part of the standard JRE. let's say you

Re: CellTable - style specific columns

2012-09-03 Thread Kara Rawsonkara
use css selectors to id your datagrid or cell table container. and by use child and exclusion selectors u should be able to spefic the style on the td. u can also use css expressions or some jsni for quick and dirty impl. however i woukd implement it using my own custom cells to render via safe

Re: Spring Roo, relationship status with GWT? recommended for more apps more complex than basic CRUD?

2012-09-03 Thread RomanK
Hi, I might have the answer to question 2: With the latest version of Roo (1.2.2) you can tell Roo to create only the Proxy and Request layer. Here are two command samples from the documentation: A.13.5. web gwt proxy request all Locates all entities in the project and creates GWT requests and

gwt abstract classes, error

2012-09-03 Thread timp
So. from the gwtquake, I ripped your: package java.io; public abstract class OutputStream { // not abstact because of some gwt strangeness public abstract void write(int b) throws IOException; public void write(byte[] ba) throws IOException { write(ba, 0, ba.length); } ... and I ripped the:

Protected Application with login page

2012-09-03 Thread sp
I have a simple web application. I would like to protect it with a login page. Below is the web.xml ?xml version=1.0 encoding=UTF-8? web-app xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance; xsi:schemaLocation=http://java.sun.com/xml/ns/javaee

Web Site based on GWT

2012-09-03 Thread mphonegg
a web site based on GWT , MVP etc.. www.messagingbay.com -- 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/-/PMneP3FgN-kJ. To post to this group,

bouncy castle, jordan zimmerman, biginteger, binary resources

2012-09-03 Thread timp
I thought you guys would like to know that it appears the Apache Harmony's BigInteger is exactly compatible with Sun's. I have bouncy castle's rsa,aes as well as jz's srp working with no problems. Although, when I debug GWT from eclipse+chrome is it running within a javascript vm, or am I still

Re: Problem seeing dynamic part of StockWatcher demo in production mode

2012-09-03 Thread ranalynamic
Hey bcutler, Now I have the same problem you described. Have you find any solution? ranalynamic On Saturday, 28 January 2012 01:35:01 UTC+1, bcutler wrote: I am brand new to GWT and just trying to get the hang of things. I followed all the steps in the StockWatcher tutorial, and it

Can't find GWT developer plugin for Chrome on the web store

2012-09-03 Thread Anjan Bakshi
I get this message when I try to run a GWT project in developement mode. Development Mode requires the Google Web Toolkit Developer Plugin I can't find GWT developer plugin for Chrome on the Chrome Web Store. I need to install this on Chrome. Chrome doesn't seem to be adding any downloaded

GWT Developer plugin does not work in Chrome 22 (under OSX Lion)

2012-09-03 Thread Jan Lolling
The plugin is installed and activated but still not work. If I try to open a gwt page in dev mode I get the request to install the dev mode plugin. How can I get this running (probably in an older version of Chrome) ? -- You received this message because you are subscribed to the Google Groups

Could somebody please point me to the GWT developer plugin for Chrome on the Chrome web store.

2012-09-03 Thread Anjan Bakshi
I can't find it on the web store, and I can't install it any other way. -- 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/-/gwzmZaOtqWgJ. To post to

Re: GWT 2.5 RC1 Is Here!

2012-09-03 Thread gilpgnet
I think all depends on the kind of applications you are writing. I've successfully tried with JSF and Java Script frameworks for simpler things, but for the most elaborated designs I allways get back to GWT after a lot of rearch on other alternatives. HTML 5 has has many of the GWT features in

Re: CellTable, Custom Header and Focus Problem

2012-09-03 Thread Lucas A
On Tuesday, June 28, 2011 8:42:58 AM UTC-4, Ümit Seren wrote: I played a little bit around and tried to override the resetFocus method on the SearchCell but this method is never called. I suppose this only works if the Cell used in a row context and not in a header context? My approach is

Re: RF Editors dealing with null proxies/subeditors

2012-09-03 Thread Jeff
good to know On Saturday, August 25, 2012 2:57:16 PM UTC-7, Arash wrote: Thank you Thomas for your elaborate response. I had to implement your solutions to fully grasp the idea. I summarize the result here for anyone who may be interested: OptionalFieldEditor is an elegant solution to

Re: Best serverside architecture(framework/stack) to use with GWT for large application...please show me the light

2012-09-03 Thread Kara Rawsonkara
hibernate with jpa beans. run onto of a restful java servlet to serve up your DAL. if your not good with dep inj design use GIN and Guice for instantiating your widgets and composites. also if your new to gwt use the ui binder. advanced create a viewport and screen manager to inject your

Re: What is the proper way of implementing page-level select-all through a Checkbox Header in a CellTable

2012-09-03 Thread Kara Marie Rawson
this works with true and true set on the CTOR of the checkbox header cell, however this does not persist though multiple pages becuase you are only referencing the visible items. working on implementing a post processor to the updaterowcount and updaterowdata method calls. if we use a flag to

Re: Login form auto-complete and GWT-RPC (or RequestBuilder), a solution!

2012-09-03 Thread Kara Rawsonkara
forms??? thats so 2000s. use event based design like u mentioned and submit via restful. using post get or update or whatever ur backend or api require. sometimes u need to use forms for file xfer or other specialized means. just keep in mind that not using forms can and does break usability /

Re: What is the proper way of implementing page-level select-all through a Checkbox Header in a CellTable

2012-09-03 Thread Kara Marie Rawson
That works like a charm. Thanx for the tip! On Friday, June 8, 2012 8:45:04 PM UTC-4, Nicholas Lesiecki wrote: Hi, Thanks for your well written post. It appears that your solution works well if you construct the CheckboxCell with the right flags: new CheckboxCell(true, true) the two

Re: GWT In Eclipse Debug Mode All Of A Sudden is Super Slow

2012-09-03 Thread Adam Sas
Hi, Recently I experienced the same problem. Have you figured out how to solve it? Best regards W dniu poniedziałek, 11 kwietnia 2011 15:54:44 UTC+2 użytkownik innusius napisał: No breakpoints and it is slow as hell. This is some code issue as I see that after each reload of debug , it

Re: enable closure compiler

2012-09-03 Thread Henrik Aasted Sørensen
Alex, Could it be this post? https://plus.google.com/110412141990454266397/posts/ACHHv2KSBCD Regards Henrik On Monday, August 27, 2012 11:56:44 PM UTC+2, Alex opn wrote: In my case the generated javascript is about 10% smaller now. Can't tell exactly because I just made a quick test and

Difference between using the library in server side and in client side ?

2012-09-03 Thread Mina Fouad
To invoke the library methods that on sever side, do I have to make RPC or simply import the library in the javapath and use it normally ?? -- 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-visualization-api] Export chart to image

2012-09-03 Thread Víctor Matoses
El viernes, 21 de octubre de 2011 19:44:19 UTC+2, Renato Beserra escribió: Hi guys, My team is working on an application that uses Google Image Chart api to generate a few charts. We are finishing a new analysis component and the number of generated charts will increase a lot. So, we'd

Re: RemoteServiceObfuscateTypeNames throws SerializationException

2012-09-03 Thread Andrew Balakhanov
Hello. I have struggled with the problem to. :) Can you please tell my. Did you resoled the issue? On Saturday, September 4, 2010 12:39:01 AM UTC+3, Gal Dolber wrote: Hi, I am trying to get rpc obfuscation working. Have added this: inherits name=

Re: Clear Cell table data

2012-09-03 Thread Kara Marie Rawson
try updating your row count and row data. getDataGrid().setRowCount(getDataCount(), true); getAsyncDataProvider().updateRowCount(getDataCount(), getAsyncDataProvider().updateRowData(getOffset(), getDataList()); rather then using my async provider you would get your list provider or whatever

Re: DART vs. GWT

2012-09-03 Thread Kara Marie Rawson
umm no. On Tue, Aug 28, 2012 at 11:02 AM, Chris Lercher cl_for_mail...@gmx.netwrote: About Dart: - I really (!) hope that Dart will succeed. - Ideally, Dart would even become the new JavaScript alternative in all browsers (however, AFAIK a few browser vendors have signaled, that this ain't

Re: GWT for ActiveMQ or Stomp

2012-09-03 Thread NickName
On Thursday, November 20, 2008 12:12:42 PM UTC+1, Juan Backson wrote: Hi,   Does anyone know of any GWT lib that can subscribe to stomp server or activeMQ server  to listen for events?   Any pointer will be greatly appreciated.   Thanks, JB Hi, i have problems with

Re: how to write a 2D game by using GWT and html5.

2012-09-03 Thread Kara Marie Rawson
its as simple as creating a while statement or a timer that fires a method called update every frame. in that method you would update all of the objects in your level. By using some simple physics equations you can apply acceleration and gravity. definately check out playn though. k On

Chrome GWT developer plugin not installed

2012-09-03 Thread Oleg Kostyuk
Chrome says that it should be installed via Chrome Market, but I can`t find it on market. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit

Can someone please explain to me why I get this error?

2012-09-03 Thread Donavyn Elliott
I'm using a free google voice api. Now when I try to run it I get this error Microsoft Windows [Version 6.1.7601] 02 Copyright (c) 2009 Microsoft Corporation. All rights reserved. 03 04 C:\Users\*cd desktop 05 06 C:\Users\*\Desktopjava -jar voice.jar 07 Exception in thread main

Re: GWT 2.4.0 - DataGrid - Differentiating between single click and double clicks on rows

2012-09-03 Thread Kara Rawsonkara
sink a mousedown event and use a static double click bool flag when u see a click check flag if its up the its a double click and reset the flag if not then is a single click. add a timer too that will reset the flag after a delay of like 100ms or something. kara Sent from my iPhone On Aug

Re: any chance to get FF15 dev plugin

2012-09-03 Thread Troy Clevenger
Anyone willing to build it for Windows x64? On Thursday, August 30, 2012 9:08:09 AM UTC-4, koma wrote: confirmed working for FF15 on Linux 64-bit... thx ! -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the

GWT textbox.

2012-09-03 Thread Bobby
onFocus of any of the textboxes in my GWT application the cursor is going back to the starting of the text. I tried to set the cursor position but still didnt work. Even i cannot be able to select the text by dragging the mouse over the text. This happens only in IE ,works fine in Chrome.

GWT Window.localtion.assign redirect is not working in tomcat/jetty server

2012-09-03 Thread ranjan
** i am using gwt to create a web application. when a user presses the logout button, i want to be able to refresh the page(or basically redirect to the homepage)as my GWT application runs only on one html page. what is the programmatic code to do this? I am doing Async calls to to the

Window.Location.assign() works in dev but fails in Tomcat/jetty external deployment

2012-09-03 Thread ranjan
i am using gwt to create a web application. when a user presses the logout button, i want to be able to refresh the page(or basically redirect to the homepage)as my GWT application runs only on one html page. what is the programmatic code to do this? Even this Window.Location.assign() works

GWT listbox not working with single click.

2012-09-03 Thread Bobby
When I click on the listbox in IE it doesnt open for the single click.It works fine in Chrome. Please help with any solution for this problem -- 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: Can't install gwt plugin for chrome/firefox/internet explorer

2012-09-03 Thread Nicolas Hess
Well, take the downloaded file (gwt-dev-plugin.crx) and drag it to chrome://chrome/extensions/ Cheers Am Sonntag, 5. August 2012 18:12:40 UTC+2 schrieb danielMartinus: I tried to install the browser plugin of gwt to finally run an application in my browser, now did i found out its a

Re: any chance to get FF15 dev plugin

2012-09-03 Thread SpeedyFlo
Works also on win :D ... thx ! joi, 30 august 2012, 16:08:09 UTC+3, koma a scris: confirmed working for FF15 on Linux 64-bit... thx ! -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit

Visually select a TreeNode in a CellTree

2012-09-03 Thread Flo Kremser
Hello, is it somehow possible to select a node in a CellTree programmatically, so that the 'cellTreeKeyboardSelectedItem' and 'cellTreeSelectedItem' styles are applied to the node? Furthermore, I'd like to know if there is a way to prevent this styles from being removed when the tree looses

GWT FileUpload

2012-09-03 Thread Bobby
Hello, I have issues with GWT fileUpload in Internet Explorer. in the onSubmitComplete ,event.getResult() is not giving me the XML with values.It is just giving me the XML skeleton without valuse. It works fine in Chrome,but failing in InternetExplorer. Does anyone have this kind of issue?

Unable to create GWT Library using 3.7 and Eclipse Indigo.

2012-09-03 Thread B-RI
Hi - Trying to create a new GWT Library project for UI components that are to be reused across multiple GWT projects - I would think this is a very common thing. However I cannot find the wizzard or any information for that matter on how to do this. Maybe this was added in a later version,

GWT Mobile App in Same WAR File

2012-09-03 Thread jduffy
Hi All, We are developing a GWT application for desktop browsers that is deployed to a Tomcat 7 container as a WAR file. We are also developing a companion mobile application that is written in JavaScript and JQuery. We would now like to embed both applications into the same WAR file so that

Multipages with GTW

2012-09-03 Thread 4x4is18
Hey, we want to use multiple tabs in a GWT Project. Is there a way to implement this? We want use ClientStorage for the session tracking. We need more than one HTML page because we have a user- /gamemanagement, and for every new game thats started we need a new tab. The user can start more than

RequestFactory collects request calls after onConstraintViolation response

2012-09-03 Thread Manuel Schrag
Hello, We're having a problem using the request factory in GWT 2.5 RC1. When calling *rejectBankCheck() *on the activity, it happens that there are bean validation errors. The service method corresponding to this request call is not invoked. By correcting the errors on the UI and clicking on a

Re: Spring and gwt (request factory)

2012-09-03 Thread Miłosz Pacholczyk
Hello, have you found a way to configure it properly? If so, would you mind posting samples for web.xml and applicationContext.xml? I have a very similiar code, but I got stuck at wiring it all. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit

Re: fundamental problems with predictive layout

2012-09-03 Thread Kara Rawsonkara
you have to call force layout to calc sizes in the new space. k Sent from my iPhone On Sep 1, 2012, at 6:09 PM, Magnus alpineblas...@googlemail.com wrote: Hi, since I use GWT I have a fundamental problem with implementing a predictive layout. I did many resize operations using the

CellTable does not appear when used in CellList (or CellTable) as part of a custom widget

2012-09-03 Thread ben
Hello, I created a custom widget that contains a CellTable and other components. It works fine. Now I want to use this widget in a CellList (or CellTable, whatever). I created a custom cell that extends AbstractCell and contains my widget. The problem is that I can see every components of my

Re: GWT Delevoper Plugin for Chrome must be installed from Web Store

2012-09-03 Thread Rob Taft
I just hit the same issue. When I went to chrome://extensions/ it said it was installed and enabled. I just disabled it and reenabled it and it started working again. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this

GWT Library feature missing in GWT 3.7 plugin for Indigo?

2012-09-03 Thread B-RI
Hi - I am trying to create a GWT Library (that I will be using for a UI widget library) - that will be shared with many other web projects. I found information on creating a GWT Library, but my Eclipse (Indigo) is missing the GWT Library Wizard, and I cannot find any additional information on

Re: GWT Maps V3 Api, clearing directions

2012-09-03 Thread Thai Ha Duong
I have the same question please any one can help? On Friday, 31 August 2012 12:47:02 UTC+1, Jonas wrote: I'm using the GWT Maps V3 Api from https://github.com/branflake2267/GWT-Maps-V3-Api After finding directions on the map, I'm trying to clear the previous ones before finding new. In

RequestFactory collects request calls after onConstraintViolation

2012-09-03 Thread Manuel Schrag
Hi, I have the following method in my activity: public void rejectBankCheck(String remarks) { request.rejectBankCheck(entity, remarks) .fire(new ReceiverProtocolProxy() { @Override public void onSuccess(ProtocolProxy response) { display.onRejectSuccess(); } @Override public void

Re: Poor Developer

2012-09-03 Thread Pandya, Amit
I think, that developer is BALA :-) On Thu, Aug 30, 2012 at 12:23 PM, Bala california.b...@gmail.com wrote: Attach the picture about poor developer in the wild world of clients, managers and testers -- You received this message because you are subscribed to the Google Groups Google Web

Problem - Images are not displayed

2012-09-03 Thread Christian Eggert
Hallo, I am new to GWT so this might be a stupid question. I am trying to familiarize myself with GWT and wanted to build a simple UI using the UIBinder. For starters I wanted to try a simple layout using the DockLayoutPanel with a logo at the top and some images that are supposed to be used

Re: DevMode for Firefox 14

2012-09-03 Thread Charles Huang
Hi Alan, I'm running Firefox 14 on my Fedora 16 64-bit machine, after upgrade to the latest dev mode plugin from your site, the plugin constantly output massive chunk of information to my console, which froze my browser right away. Do you have any suggestion on that? Thank you very much.

Re: DevMode for Firefox 14

2012-09-03 Thread Charles Huang
Sorry forgot to mention, the output information is from the Gwt Dev mode plugin, including init information, all the communication stuff. with flushed output in the end. Thanks again. Regards, Chao On Wednesday, July 18, 2012 10:08:06 AM UTC+10, Alan Leung wrote: While I am technically no

Accessibility and ruler divs...

2012-09-03 Thread dreak
Hi, I have one small problem... Some widgets contain ruler divs, which looks like this: div style=position: absolute; z-index: -32767; top: -20ex; width:10em; height: 10ex;nbsp;/div When I use JAWS12 (screen reader), and move through the page with 'DOWN' key, it always says 'Blank'. Would

GWT-RPC unmarshalling problem

2012-09-03 Thread diegop
Hello, I built a login screen with user and password text fields and a button, when the button is clicked, the client sent a log in request to the server using the user and password as parameters : loginService.loginServer(username,password ,new AsyncCallBackCCtLoginUser() { .. int the

how to get text,value pairs in gwt suggestionBox

2012-09-03 Thread md alamin
i need a autosuggest combobox for an ambiguous list of strings. but everey string has an unique id. this id is needed to know what the user has selected (send id back to server and do something with it). how to implement this with the gwt's auto-suggest-comboBox suggestionBox. Is there a way

CellTable does not appear when used in CellList (or CellTable) as part of a custom widget

2012-09-03 Thread ben
Hello, I created a custom widget that contains a CellTable and other components. It works fine. Now I want to use this widget in a CellList (or CellTable, whatever). I created a custom cell that extends AbstractCell and contains my widget. The problem is that I can see every components of my

GWT designer doesn't work in RHEL

2012-09-03 Thread bvt
I'm attempting to using the GWT designer in Eclipse 3.7 on Red Hat Enterprise Linux 5.4 (64 bit). I get the following error: *GWT Designer uses the SWT Browser widget to render the GWT UI. SWT Browser requires a compatible xulrunner version installed: it should be 1.9.1.x or 1.9.2.x version

Is this a bug in TabLayoutPanel?

2012-09-03 Thread joelus
Hi, I'm relatively new to GWT so I'm not sure if this is a bug or if I'm misunderstanding something. When I add a widget to a TabLayoutPanel, if the widget is already attached to the TabLayoutPanel, it should move the existing widget to the far right. This is how I understood the javadoc

Re: Meteor DDP - or similar - with GWT?

2012-09-03 Thread Thomas Lefort
I also found an old project called GWT StreamHub http://code.google.com/p/gwt-comet-streamhub/ On Monday, September 3, 2012 1:24:38 PM UTC+2, Thomas Lefort wrote: I am looking at Errai CDI right now, thanks for your suggestion. On Monday, 3 September 2012 10:36:16 UTC+2, nino wrote: Have

Re: RequestFactory collects request calls after onConstraintViolation response

2012-09-03 Thread Thomas Broyer
On Friday, August 31, 2012 11:43:23 AM UTC+2, Manuel Schrag wrote: Hello, We're having a problem using the request factory in GWT 2.5 RC1. When calling *rejectBankCheck() *on the activity, it happens that there are bean validation errors. The service method corresponding to this request

Re: Accessibility and ruler divs...

2012-09-03 Thread Thomas Broyer
On Monday, September 3, 2012 9:03:56 AM UTC+2, dreak wrote: Hi, I have one small problem... Some widgets contain ruler divs, which looks like this: div style=position: absolute; z-index: -32767; top: -20ex; width:10em; height: 10ex;nbsp;/div When I use JAWS12 (screen reader), and

Re: fundamental problems with predictive layout

2012-09-03 Thread Andrei
Magnus, Jens is right: all you need is a simple FlowPanel with a Label and a button inside. Set the button style to float: right, set its width (which, I assume, is constant), and add a right margin to your label which is wider than the button. That's it. Your generated code will be 10 times

Re: Meteor DDP - or similar - with GWT?

2012-09-03 Thread Alain Ekambi
I like Errai a bit more :) 2012/9/3 Thomas Lefort lefortho...@gmail.com I also found an old project called GWT StreamHub http://code.google.com/p/gwt-comet-streamhub/ On Monday, September 3, 2012 1:24:38 PM UTC+2, Thomas Lefort wrote: I am looking at Errai CDI right now, thanks for your

Re: Multipages with GTW

2012-09-03 Thread Natanael Maldonado
Check this https://community.jboss.org/thread/199409?_sscc=t 2012/8/30 4x4is18 mar...@eljeb.de Hey, we want to use multiple tabs in a GWT Project. Is there a way to implement this? We want use ClientStorage for the session tracking. We need more than one HTML page because we have a user-

Re: GWT multi-page application

2012-09-03 Thread n3k0
Check this https://community.jboss.org/thread/199409?_sscc=t El martes, 5 de agosto de 2008 07:19:21 UTC-5, Nitin Gupta escribió: Hi all, I am a GWT newbie. I am working on an application in which we have got multiple web pages. I checked the web but I could not find a very

Re: Anyone knows GWT Multipage Framework?

2012-09-03 Thread n3k0
Check this https://community.jboss.org/thread/199409?_sscc=t El viernes, 9 de diciembre de 2011 13:55:27 UTC-6, Xybrek escribió: Hi, anyone here knows http://code.google.com/p/gwt-multipage/ ? I have some specific problems with the framework, is there any other GWT framework that allows

Re: Login form auto-complete and GWT-RPC (or RequestBuilder), a solution!

2012-09-03 Thread Craig Mitchell
I'm a little confused. The way Tomas showed (above) used to work with Autocomplete, however, Chrome decided it wasn't going to play nice with that any more. The only solution I could find was to do a login with a form. Eg: form action=login method=GET.../form I don't know how to get

Re: fundamental problems with predictive layout

2012-09-03 Thread Magnus
Am Montag, 3. September 2012 16:41:16 UTC+2 schrieb Jens: http://jsfiddle.net/EHCGu/ you can drag the vertical splitter to change the size of the result and the label div fills all the space while the button is float:right. No need to use any onResize() JavaScript as the browser takes

Re: fundamental problems with predictive layout

2012-09-03 Thread Magnus
Am Montag, 3. September 2012 23:25:04 UTC+2 schrieb Andrei: Magnus, Jens is right: all you need is a simple FlowPanel with a Label and a button inside. Set the button style to float: right, set its width (which, I assume, is constant), and add a right margin to your label which is

Re: [gwt-contrib] Cleanup: is IE6 JNI really needed?

2012-09-03 Thread Thomas Broyer
On Monday, September 3, 2012 12:29:22 AM UTC+2, Ray Cromwell wrote: The version pings are actually pretty important in terms of showing Google management continued interest in GWT as well. Being able to have a rough estimate on how many active monthly users we have is a good way to argue

Re: [gwt-contrib] Cleanup: is IE6 JNI really needed?

2012-09-03 Thread David
We are doing development on machines not connected to the internet and I bet a lot of other GWT devs are in the same situation. So how can management depend on such a feature to decide on usage ? David On Mon, Sep 3, 2012 at 10:44 AM, Thomas Broyer t.bro...@gmail.com wrote: On Monday,

Re: [gwt-contrib] Cleanup: is IE6 JNI really needed?

2012-09-03 Thread Thomas Broyer
On Mon, Sep 3, 2012 at 10:51 AM, David david.no...@gmail.com wrote: We are doing development on machines not connected to the internet I feel your pain. and I bet a lot of other GWT devs are in the same situation. I sincerely hope they're not a lot. That's so 20th century! So how can

Re: [gwt-contrib] Cleanup: is IE6 JNI really needed?

2012-09-03 Thread John A. Tamplin
On Mon, Sep 3, 2012 at 4:51 AM, David david.no...@gmail.com wrote: We are doing development on machines not connected to the internet and I bet a lot of other GWT devs are in the same situation. So how can management depend on such a feature to decide on usage ? You measure what you can and

  1   2   >