CodeSplitting

2013-09-12 Thread Lakshitha Udara
hi guys There's a issue with Initial Download size is being too high , currently I'm working on code-splitting to reduce the initial download size. so far the main problem is that all the RPC serialized files are initially loading , so if there any way to breakdown , only the important files at

Re: The RequestFactory ValidationTool must be run for the RequestFactory type

2013-09-12 Thread hujianming87
I add DynaTableRequestFactoryDeobfuscatorBuilder class from this site: https://code.google.com/p/arjunsatyapal/source/detail?r=9d89f7a1b5102d2db0e032ec87f9ae7b8bc841a8 It seems woring fine now On Friday, September 23, 2011 10:20:24 AM UTC+8, TULC wrote: I have not yet been able to get past this

Re: Draw graphs using GWT

2013-09-12 Thread Thomas Broyer
Hey Aryan, one more message promoting your lib that way and I flag you as spam. It's OK to create a new thread to announce your new lib, and replying to live threads by promoting your lib, but resurrecting tens of old threads is just annoying. So please make a proper announcement in its own

Use of IsEditor in UiBinder

2013-09-12 Thread Jordan Amar
Hi all, I have a view which is supposed to show some components differently based on a general view mode (e.g. read-only or write). This view implements IsEditor. For the fields which are supposed to be different depending on this mode, I have added @UiField(provided=true) in the Java file

Re: Use of IsEditor in UiBinder

2013-09-12 Thread Thomas Broyer
On Thursday, September 12, 2013 10:19:23 AM UTC+2, Jordan Amar wrote: Hi all, I have a view which is supposed to show some components differently based on a general view mode (e.g. read-only or write). This view implements IsEditor. For the fields which are supposed to be different

RPC - override doGet negative affect (?)

2013-09-12 Thread Alexander Streltsov
Hello, is there any negative affect, when override doGet method in RemoteServiceServlet? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To unsubscribe from this group and stop receiving emails from it, send an email to

Re: RPC - override doGet negative affect (?)

2013-09-12 Thread Jens
I don't think so. Its an ordinary servlet and GWT does not use doGet(). -- J. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To unsubscribe from this group and stop receiving emails from it, send an email to

Re: Use of IsEditor in UiBinder

2013-09-12 Thread Jordan Amar
Thanks, good trick ! I thought the UIBinder would also attempt to get my provided widget through the same kind of method (i am talking of foo()). But it did not :) (now that I am riting this i think such methods require a @UIFactory annotation right ?) However, I think there is some kind of error

Re: Use of IsEditor in UiBinder

2013-09-12 Thread Jordan Amar
Thanks, nice trick ! I thought the UIBinder would also attempt to get my provided widget through the same kind of method (i am talking of foo()). But it did not :) (now that I am riting this i think such methods require a @UIFactory annotation right ?) However, I think there is some kind of

Re: Use of IsEditor in UiBinder

2013-09-12 Thread Thomas Broyer
On Thursday, September 12, 2013 3:18:57 PM UTC+2, Jordan Amar wrote: Thanks, good trick ! I thought the UIBinder would also attempt to get my provided widget through the same kind of method (i am talking of foo()). But it did not :) (now that I am riting this i think such methods require a

Re: HTML5 Storage For JavaScriptObject ??

2013-09-12 Thread Jens
local/sessionStorage only support String so you have to serialize your JSO into a String. Take a look at GWT's JsonUtils class. -- J. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To unsubscribe from this group and stop receiving emails

Directed Acyclic Graph implementation

2013-09-12 Thread asif . tmcp
Hi, I am looking for an implementation of a Directed Graph for my GWT project - came across jgrapht - but porting it to GWT with all CloneNotSupportedException / Object.clone() / newInstance() issues proved to be troublesome. Then I came across graphz which seems to be something similar and

Re: Adding data to from arry to create list data in widgets [list, cobmo, flex, etc]

2013-09-12 Thread jajang nurjaman
why my article all page not found? http://globalcyber.pun.bz/citra-indah-citragranciputra.xhtml 2013/7/9, mdwarne mike.wa...@gmail.com: No, you add them one at a time. However you can always create your own component. Subclass the listbox, and add your own setItemsFromList() method if you

Re: Directed Acyclic Graph implementation

2013-09-12 Thread Jens
I am looking for an implementation of a Directed Graph for my GWT project - came across jgrapht - but porting it to GWT with all CloneNotSupportedException / Object.clone() / newInstance() issues proved to be troublesome. Looks like JGraphT does not use newInstance() in the library

Re: Directed Acyclic Graph implementation

2013-09-12 Thread asif . tmcp
Hi Jens, Thanks for the prompt response. I was playing with jgrapht for a couple of hours - In the file org.jgrapht.graph.AbstractBaseGraph.java (which extends AbstractGraph) AbstractBaseGraphV, E newGraph = TypeUtil.uncheckedCast(super.clone(), typeDecl); In the

Re: Directed Acyclic Graph implementation

2013-09-12 Thread asif . tmcp
You are right though - github searches are not returning those instance - but the actual file has those code. Am I looking at a wrong version? On Thursday, September 12, 2013 4:06:03 PM UTC-4, Jens wrote: I am looking for an implementation of a Directed Graph for my GWT project - came

GWT/LinkedIn Integration Sample Project with Scribe

2013-09-12 Thread colin
A few years back, I did some exploration of using LinkedIn OAuth in GWT applications. I recently rewrite the sample app with the latest Scribe library by Fernandez Pablo (https://github.com/fernandezpablo85/scribe-java), and add a few more LinkedIn api calls. You should be able to use it as a

Re: Directed Acyclic Graph implementation

2013-09-12 Thread Jens
Seems like the GitHub search is not correct. I don't have the source checked out so I can't do reference searches, but it seems like that ClassBasedEdgeFactory is used by all the different Graph types if you provide a class for the edge in a constructor. But these Graph classes all have a

HTML5 Storage For JavaScriptObject ??

2013-09-12 Thread Odili Charles
Hello guys, has anyone successfully persisted JavaScriptObject instances into HTML5 storage. My app fetches JSON data from an external source, wraps them with JavaScriptObject instances and then does its stuff. Having to always rely on network to get the data in not very reliable so I need a

Re: Creating charts using GWT

2013-09-12 Thread Wayne Rasmuss
I don't think Google charts actually makes requests in general usage. You may be able to download the js files and use them. You should first check and see if that it's acceptable in their terms of use. I have never tried it myself. There was an old version where images were rendered on Google

Re: Directed Acyclic Graph implementation

2013-09-12 Thread asif . tmcp
Hi Jens, Thanks a lot. That worked - infact, I had already extracted the classes I needed into my own project, instead of building with the external jgrapht lib. So i didn't really have to go the super-source version. However, your response prompted me to look up what exactly is super-source

Re: [gwt-contrib] Re: Making user.agent easier to extend to add new permutations

2013-09-12 Thread Goktug Gokdogan
Sorry guys, I didn't have time to read the feedback, too many things to handle right now. I'll go through them when I have the chance to look into this change again. On Wed, Sep 11, 2013 at 8:10 AM, Colin Alworth niloc...@gmail.com wrote: I've got to second Thomas on this point - adding a new