Re: Poker Fighter: Project coded in GWT

2018-05-19 Thread richip
Pretty impressive! Do you mind saying how many 3rd-party libs you used on the client side? How much were pure GWT and how much were Javascript libs that were accessed using a native interface? And if you rolled things out, were they all Java transpiled? On Thursday, 11 August 2016 08:22:46

Re: GWT JSON-B

2018-05-19 Thread richip
On Saturday, 19 May 2018 14:07:35 UTC-6, richip wrote: > > Is there support for JSON-B or any other JSON-object binding API in GWT? > If not, is it possible to implement this without reflection? I wouldn't > mind taking a stab at it, but am not sure how I'd do it without Java

GWT JSON-B

2018-05-19 Thread richip
Is there support for JSON-B or any other JSON-object binding API in GWT? If not, is it possible to implement this without reflection? I wouldn't mind taking a stab at it, but am not sure how I'd do it without Java reflection. The goal is to call a R -- You received this message because you

Re: Elemental2 - How to set WidthUnionType CSSProperties.width

2018-04-20 Thread richip
That did it! Thanks. Very interesting API. I hope the documentation is in the works (API and Users Guide). I'd love to help. On Wednesday, 18 April 2018 00:09:46 UTC-6, Thomas Broyer wrote: > > That would be element.style.width = WidthUnionType.of("20px") -- You received this message because

Elemental2 - How to set WidthUnionType CSSProperties.width

2018-04-17 Thread richip
I'm trying to set set an HTMLElement.style.width property to an arbitrary value but don't know how the API is used. One mechanism I've seen is to use HTMLElement.setAttribute("style", String), but I'd only like to affect the width property. I'm afraid that if I pass a width string (say, "width:

Re: Serialization Exception

2011-07-14 Thread richip
Not originally, but I added it (not the first time I got bit by this) and it's still giving me a SerializationException: com.google.gwt.user.client.rpc.SerializationException at com.google.gwt.user.client.rpc.impl.SerializerBase.getTypeHandler(SerializerBase.java: 153) at

Re: Serialization Exception

2011-07-14 Thread richip
the rule with generics? Should I use a field of type FieldTypeT extends Serializable? On Jul 14, 11:04 am, cri chuck.irvine...@gmail.com wrote: Just a wild guess. Is this problem happening in Chrome? If so, completely clear your browser cache and retry. On Jul 14, 9:06 am, richip ric...@gmail.com

Serialization Exception

2011-07-13 Thread richip
We're coming up with a SerializationException for an RPC call DTO that we can't seem to resolve. Essentially, I've added an instance of a class that extends ArrayListVStruct (where VStruct is a Serializable class) and contains one Serializable field. Does someone know what our problem might be? If

Widget Reference From a Hierarchy

2011-05-03 Thread richip
Is it possible to get an object reference to a Widget from a Widget hierarchy using the APIs and some identifier? I'm aware of the APIs to navigate through Widgets but can't figure a way to determine their identity. I'm hoping an API call already exists to search. -- You received this message

On TabPanel Exit

2011-05-03 Thread richip
Is there an event that represents the exiting of a panel in a tabbed panel widget? Or, at least a way to determine what panel was left upon entering a new panel? While on the topic, what's the difference (or definition) between BeforeSelectionEvent and a SelectionEvent? Is BeforeSelectionEvent

SmartGWT, UIBinder and GWT Designer

2011-05-02 Thread richip
Has anyone successfully used the above products / technologies to create a UIBinder GUI object that's editable in GWT Designer and makes use SmartGWT? Can you send me some tips? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to

Element Properties from GWT Designer

2011-04-23 Thread richip
Is there a way to set the Element.id of a Widget from GWT Designer? We were hoping to avoid having our UI designers do any Java programming. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

Why Composite?

2011-04-23 Thread richip
Why would I wish to extend Composite instead of just extending the Widget that I'm wrapping in the Composite? -- 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

GWT Reflection on Client Side

2011-04-22 Thread richip
I've two requirements that Reflection on the client side seems most appropriate for: 1) To get references to field variables from client-side Java classes where the the specific name is determined at runtime. I figured that with Reflection, I could expose said field variables by using accessors

Re: GWT Reflection on Client Side

2011-04-22 Thread richip
specifier from within a Widget structure? On Apr 22, 10:08 am, richip ric...@gmail.com wrote: I've two requirements that Reflection on the client side seems most appropriate for: 1) To get references to field variables from client-side Java classes where the the specific name is determined

Re: GWT Reflection on Client Side

2011-04-22 Thread richip
*sigh* I replied before I saw this. Thanks! On Apr 22, 10:17 am, Christian Goudreau goudreau.christ...@gmail.com wrote: Take a look at this project: http://code.google.com/p/gwt-ent/ Cheers, On Fri, Apr 22, 2011 at 12:08 PM, richip ric...@gmail.com wrote: I've two requirements

Re: RPC Problem with HashMap containing ArrayList Value

2011-03-28 Thread richip
();     map.put(KEY, list);     //and then send map to the server. I home my post is quite clear. P.S.: The main idea is to declare all the types you are going to send to the server. On Mar 25, 6:59 pm, richip ric...@gmail.com wrote: I've an object which contains a HashMapLong, Object

RPC Problem with HashMap containing ArrayList Value

2011-03-25 Thread richip
I've an object which contains a HashMapLong, Object instance. I'm finding that when I put a value of type ArrayList, RPC calls fail with a SerializationException that starts with: com.google.gwt.user.client.rpc.SerializationException at

Eclipse Tools

2011-03-14 Thread richip
If you were to create a GWT application that uses Spring (using, say, Spring4GWT) and HIbernate on Eclipse and you had Eclipse IDE for JEE Developers, GWT Designer plugin, Hibernate Tools plugin and Spring IDE plugin installed, how would you create the project? Or what's the best way to start the