Fetching images from Server casting them in GWT Image widgets

2014-05-13 Thread Anwesha Roy
Hi, I am new to GWT development and need some help. I have some images on the server. I want to fetch them to client side by passing the filename as parameter and cast them in Image widgets. I do not want the images to be downloaded via browser. I just want to display them. What is the right

Re: Use Elemental to optionally generate HTML on the server?

2012-10-10 Thread Roy
-webkit browsers so long as you kept to the DOM they support (i.e. keep to the simple stuff). Is that not correct? Thanks, Roy On Tuesday, October 9, 2012 6:23:16 PM UTC+1, Andrea Boscolo wrote: I'd give CellTable/DataGrid a try, if your model is suitable for it and your cells aren't so 'fancy

Re: Saving results from GWT-RPC call on client

2012-10-10 Thread Roy
An alternative is to make the GWT-RPC request using GET instead of POST, and have the server return cache headers so the result gets cached in the browser. I'm doing that in my app - works great. Roy On Wednesday, October 10, 2012 6:13:20 AM UTC+1, JeanV wrote: I was wondering if there's

Use Elemental to optionally generate HTML on the server?

2012-10-09 Thread Roy
I have a large GWT app which unfortunately is slow in some old browsers I need to support (IE7). A major part of the slowness is my architecture - I am using GWT-RPC to download model objects from the server and then building a large HTML table in the browser using GWT Widgets. The table is

About share experience on GWT.

2012-08-31 Thread Roy Yeung
Anyone know if there any website has example of GWT sites. I am now no longer work on GWT, but i would like to share my experience, e.g. code and example, because I do like this tech. And hope it could be popular. Below two website are final things I worked on GWT. Also code, now finding

RE: GWT - DTO

2012-04-18 Thread Roy Yeung
One of my experience in DTO: Attribute in parent class would not be serialized in GWT-RPC A extends B { String label } B{ String name: } If A is a DTO, the attribute name would not be serialized object object instaniated from class A. Please correct me if i am wrong. -Original

RE: GWT - DTO

2012-04-18 Thread Roy Yeung
@googlegroups.com] On Behalf Of Paul Robinson Sent: Wednesday, April 18, 2012 6:31 PM To: google-web-toolkit@googlegroups.com Subject: Re: GWT - DTO On 18/04/12 10:44, Roy Yeung wrote: One of my experience in DTO: Attribute in parent class would not be serialized in GWT-RPC A extends B { String

RE: GWT - DTO

2012-04-18 Thread Roy Yeung
@googlegroups.com] On Behalf Of Paul Robinson Sent: Wednesday, April 18, 2012 9:14 PM To: google-web-toolkit@googlegroups.com Subject: Re: GWT - DTO On 18/04/12 12:02, Roy Yeung wrote: Take a look at this, http://code.google.com/p/google-web-toolkit/issues/detail?id=7213 May be someone can try

Re: Client/Server communication. GWT-RPC ? GIlead ? Dozer ? RequestFactory ?

2012-04-08 Thread Roy Yeung
I prefer gwt-rpc. Baiscally, the main issue you finally meet is how to reproduce the same object/domain model across gwt and server side. Using gwt-rpc, you can shared the code. Sent from my iPhone On 7 Apr, 2012, at 7:44 PM, fabio njo...@gmail.com wrote: I'm just about to start a major web

Re: SWT Browser requires a compatible xulrunner version installed

2012-01-30 Thread Segfault and Roy
I know this is about a year old, but I am getting the same error in Indigo. My platform is slackware. I don't have xulrunner installed as a package separate from firefox et al. I was wondering a few things, 1. Which version of xulrunner should I install for Indigo, 2. I thought eclipse was

Re: GWT Designer fails under Eclipse 3.7 with latest update

2011-10-20 Thread Roy
See issue 6687: http://code.google.com/p/google-web-toolkit/issues/detail?id=6887 On Oct 13, 2:01 am, Jean-Lou Dupont jeanlou.dup...@gmail.com wrote: I get the stack trace whilst trying to access the Design view.  I am running Eclipse 3.7.1 under Linux Ubuntu 10.04. !ENTRY

Re: using GWT with flex?

2011-05-25 Thread Jay Roy
let me explain with a simple example We have a flex screen with a data grid. The data in data grid is populated with java collection. The java collection contains stock data which comes from backend. In the backend every 0.5 second the stock data in collection is updated(we get market feed of

Re: using GWT with flex?

2011-05-25 Thread Jay Roy
there is a solution that is more effcient and esay to maintain then using GWT. But if you dont mind having some overhead plus a language explosion (MXML/AS3, JS, Java) and architecture problem in your project. I can tell you what our first solution to solve this type of problem was 2011/5/26 Jay Roy jagger

GPE 2.3 - sign on gives 400 Bad request

2011-05-08 Thread Roy
and workarounds? How do I delete my Google credentials so in GPE I can re-enter them, eg. to try a different email address best Roy -- 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

GPE 2.2 download

2011-05-08 Thread Roy
Any ideas where I can download the previous version of the eclipse plugin as my GPE 2.3 is lying dead in the water and I have a deadline to meet :-( best regards Roy -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group

GWT URLs with # don't work with IE7

2011-04-13 Thread Roy
Hello, There seem to be a know issue with IE which doesn't respond to URLs that have # sign in them. See for example: https://mootools.lighthouseapp.com/projects/2706/tickets/638-request-fails-when-url-has-hash-in-ie7 As we use # quite frequently in out GWT based application we are lacking

Re: GWT URLs with # don't work with IE7

2011-04-13 Thread Roy
Now that I think about it I don't think I can modify the URL not to have # as we need #! in order the site to support Google's Ajax crawling scheme... Any ideas? On Apr 13, 6:53 pm, Roy roy.cohe...@gmail.com wrote: I've already got this line in index.html. Can you try few # based URLs with IE7

Re: GWT URLs with # don't work with IE7

2011-04-13 Thread Roy
applications: iframe src=javascript:'' id=__gwt_historyFrame tabIndex='-1' style=position:absolute;width:0;height:0;border:0/iframe -- Jan Vladimir Mostert BEngSci MyCee Technologies On Wed, Apr 13, 2011 at 7:33 PM, Roy roy.cohe...@gmail.com wrote: Hello, There seem to be a know issue

How to change the Place default : syntax in the URL?

2011-04-07 Thread Roy
Hello, By default, the URL of a GWT Place consists of the Place's simple class name (like HelloPlace) followed by a colon (:) and the token returned by the PlaceTokenizer. How can I change the : part to /? -- You received this message because you are subscribed to the Google Groups Google Web

Re: How to change the Place default : syntax in the URL?

2011-04-07 Thread Roy
Thanks. So if I understand correctly, currently not possible? On Apr 7, 12:11 pm, Rikard Hultén rikardhul...@gmail.com wrote: http://code.google.com/p/google-web-toolkit/issues/detail?id=5899 -- You received this message because you are subscribed to the Google Groups Google Web Toolkit

HTMLUnit and GWT Places

2011-04-05 Thread Roy
Hello, I am trying to use HTMLUnit with GWT 2.1. This release of GWT has introduced the Places concept but I don't see that HTMLUnit has got support for that. Am I correct? Any other tool I can use to create HTML snapshots for sites developed with GWT 2.1 and Places? -- You received this

GWTEvent, sinking own events

2010-06-30 Thread Roy
, will View A catch the event? or does the event handler implicitly suppress the catch? If the answer is that View A *will* catch its own event, any recommendations on how to identify the event in such a way that View A knows it was the originator? best Roy -- You received this message because you

Re: GWTEvent, sinking own events

2010-06-30 Thread Roy
explain? On Jun 30, 7:41 pm, Johan Rydberg johan.rydb...@edgeware.tv wrote: On 6/30/10 11:57 AM, Roy wrote:If the answer is that View A *will* catch its own event, any recommendations on how to identify the event in such a way that View A knows it was the originator? Maybe you can use

StackLayoutPanel within a ScrollPanel

2010-06-23 Thread Roy
of the SP is blank. If I look at the DOM, I can see the other bars with descending positive values of style-bottom. Thus they are rendering with Z immediately above the A (and outside my viewable window), Y above Z and so on. Any ideas how to make SLP and SP play nice together? best Roy -- You

ext-gwt

2010-04-13 Thread Debjani Roy
Hi, I would like to know about any commercial implementation with ext-gwt - how buggy is it etc. Also does it have support for UIBinder Thanks -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

GWT fails behind Cisco PIX/ASA Firewalls.

2010-02-18 Thread Roy
firewalls. Please help with insight or success stories on solving the issue. Thanks, Roy -- 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-tool...@googlegroups.com. To unsubscribe from

Re: GWT Chat

2009-11-16 Thread Roy
App Engine supports XMPP On Nov 16, 1:38 pm, Prempena pascal.rempena...@gmail.com wrote: I've tried to find a solution with App Engine for weeks without any success. Server push is not only useful for Chat. It can be used to inform users of some events coming from the Server. This is issue

Re: GWT Chat

2009-11-15 Thread Roy Smith
There's a video on Google IO where the Wave team discuss how they achieved this with long running http. Sorry I can't remember the URL or details. 2009/11/15 Jim jimmy.verhee...@gmail.com hi, I'd like make a chat using GWT 1.7 but gwt doesn't allow the use of socket ? Have you got any

Re: Conflicts on Install GWT on Ganymede (3.5.1)

2009-11-13 Thread Roy Smith
There was particular release of Eclipse 3.4 (Gannmede) which was so badly busted that nothing would upgrade. The only solution was to downgrade and then upgrade, or reinstall. Obviously if the OP is running Ganymede, then installing 3.5 (Galileo) is the best option. iirc, workspaces are not

Re: two browser windows

2009-11-13 Thread Roy Smith
GWT *is* Javascript, so if you can do it in JS, just write a GWT native method. Try Googling JSNI 2009/11/13 Angel Marquez angel.marq...@gmail.com Would you refer a site that does this with js. From what I understand you want to drag out a widget, say a text input field, and have a new

Re: 求助,无法在eclipse3.5中导入samples里的项目

2009-08-25 Thread Roy
below whatever language used. Roy On Aug 24, 7:23 am, David david.no...@gmail.com wrote: Translation to English (by Google): I also came to report what I do not know many people in China play GWT do? Still sounds gibberish to me :-) 2009/8/24 keven trekker@gmail.com: 我也来报到一下,不知道玩GWT的