Re: Mapping EntityProxies to Domain Interfaces

2012-10-10 Thread Christoph Henrici
Works perfectly. Thank you very much. ufff i'm glad: less code for us! Am Dienstag, 9. Oktober 2012 19:42:06 UTC+2 schrieb Manuel Carrasco: > > > > On Tue, Oct 9, 2012 at 4:38 PM, Christoph Henrici > > > wrote: > >> Great! >> Sorry i don't know that much about patches which one shoul

Re: Mapping EntityProxies to Domain Interfaces

2012-10-10 Thread Christoph Henrici
Forgot to ask: the patch will be in a upcoming version? Am Mittwoch, 10. Oktober 2012 09:26:51 UTC+2 schrieb Christoph Henrici: > > Works perfectly. Thank you very much. ufff i'm glad: less code for > us! > > > Am Dienstag, 9. Oktober 2012 19:42:06 UTC+2 schrieb Manuel Carrasco: >> >> >> >

Re: Saving results from GWT-RPC call on client

2012-10-10 Thread monkeyboy
It is feasible. In my solution I used GWT-RPC's serialization but I had to tweak it since GWT-RPC messages are assymetric (the message sent from the client to the server is in a different format than the message sent from the server to the client even if they transfer the same object). Basically

Re: Mapping EntityProxies to Domain Interfaces

2012-10-10 Thread Thomas Broyer
On Wednesday, October 10, 2012 9:27:24 AM UTC+2, Christoph Henrici wrote: > > Forgot to ask: the patch will be in a upcoming version? >> >> >>> Maybe 2.6, or 2.5.1 (if there's one). No ETA yet. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" gr

Re: Firefox 16 GWT Plugin

2012-10-10 Thread getaceres
Any binary ready for download? On Tuesday, October 9, 2012 10:47:13 PM UTC+2, James Wendel wrote: > > With Firefox 16 now out, the GWT plugin is incompatible again. But it > looks like Google is already working on it: > http://gwt-code-reviews.appspot.com/1851804/ > > -- You received this mess

Re: Firefox 16 GWT Plugin

2012-10-10 Thread Thomas Broyer
On Wednesday, October 10, 2012 10:17:44 AM UTC+2, getaceres wrote: > > Any binary ready for download? >> >> >> Not yet. Track this page: http://code.google.com/p/google-web-toolkit/source/browse/trunk/plugins/xpcom/prebuilt/gwt-dev-plugin.xpi Should come soon though: http://gwt-code-reviews.appsp

Re: Mapping EntityProxies to Domain Interfaces

2012-10-10 Thread Christoph Henrici
Appreciate you guys great work! Thanx! Am Mittwoch, 10. Oktober 2012 09:59:55 UTC+2 schrieb Thomas Broyer: > > > > On Wednesday, October 10, 2012 9:27:24 AM UTC+2, Christoph Henrici wrote: >> >> Forgot to ask: the patch will be in a upcoming version? >>> >>> > Maybe 2.6, or 2.5.1 (if there's

GWT-Textarea Problem

2012-10-10 Thread Andrei
TextArea is used for user input. If you continuously add text to it programmatically for display purposes only, you are using the wrong widget. Use HTML widget instead. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To view this discuss

IndexOutOfBoundsException in 2.5 rc2 and not in 2.4

2012-10-10 Thread funkforce
Hi, I am getting an java.lang.IndexOutOfBoundsException: Row index: 0, Row size: 0 (full exception below). in 2.5 rc2 on code that works fine in 2.4. I have a CellTable and when I have an empty dataset to feed the list I receive the exception. When it contains objects it works as before. After

Re: GWT 2.5 RC2 Is Here!

2012-10-10 Thread cd
Hi all, Is it me, or is the SHA1 sum not correctly displayed at the download page (https://developers.google.com/web-toolkit/versions)? It says it should be bbb906bdd0250c73c2f8e530b4a8c0039710f329, but I get 9a9d0f16c9fda7ffebc04016aa3c735e1057b0e8 Thanks for checking Erwin Op donderdag 4 o

Re: How to include 3rd party Javascript libraries in a reusable gwt library/widget?

2012-10-10 Thread Ümit Seren
I recommend using ScriptInjector instead of putting the script tag in the module's XML file because it allows you to use SuperDevMode (xsilinker doesn't allow for script tags in the module's xml file). If you have a maven project structure it like this: src/main/java - my.company.widget

Re: GWT 2.5 RC2 Is Here!

2012-10-10 Thread Thomas Broyer
On Wednesday, October 10, 2012 1:49:05 PM UTC+2, cd wrote: > > Hi all, > > Is it me, or is the SHA1 sum not correctly displayed at the download page ( > https://developers.google.com/web-toolkit/versions)? > > It says it should be bbb906bdd0250c73c2f8e530b4a8c0039710f329, but I get > 9a9d0f16c9

Re: GWT Designer - MenuBar

2012-10-10 Thread Marco
I think this is an urgent issue. What's the best way to place this issue and to get feedback? -- 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/-

Re: GWT Designer - MenuBar

2012-10-10 Thread Jens
http://gwt-code-reviews.appspot.com/1726805 They changed the API from Command to ScheduledCommand recently and I would guess that GWT Designer does not respect this yet. So you best file an issue at http://code.google.com/p/google-plugin-for-eclipse/ or http://code.google.com/p/gwt-designer/

Re: TextArea vs RichTextArea

2012-10-10 Thread jimakos17
I tried to include the getCursorPos() of TextArea in RichTextArea private static RichTextAreaImpl impl = GWT.create(RichTextAreaImpl.class); public int getTextAreaCursorPos(Element elem) { return getCursorPos(elem); } public int getCursorPos() { return getTextAreaCursorPos(getElement()

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

2012-10-10 Thread Roy
I'm using Cell widgets elsewhere but don't think they'll buy me enough here because I can't use paging in this UI - I need to display the whole table. I'm already loading using an async request. Thanks for the pointer to ElementBuilder. That seems promising but has some drawbacks - it won't h

Re: jquery jqGrid with GWT

2012-10-10 Thread Munendra Sharma
Hi, I am also looking for the same, if somebody has done this please post, many thanks in advance. On Wednesday, 16 March 2011 10:12:27 UTC+5:30, ajaxDeveloper wrote: > > I want to use jgQrid as my GWT widget. If anyone has done this please > do help me with example code. > > I will be very gra

Inheriting Module from JAR files

2012-10-10 Thread Fabio
HI I have an Eclipse GWT project working good as long as I keep linked another project to the classpath. But when I compile the other project into a jar file, unlink the classpath and put this jar file into the folder war/WEB-INF/lib and add it in the classpath the gwt project compile, but whe

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 a

Re: Is GWT market is down?

2012-10-10 Thread Mayank pandya
I am from India so any indian city, or also like to work as telecommunication GWT jobs. On Tuesday, 9 October 2012 09:18:05 UTC+5:30, chris wrote: > > what state/city are you looking for work in? Texas? New South Wales? > Rajasthan? > > On Monday, 8 October 2012 22:49:14 UTC+11, Mayank pandya wr

Re: GWT-Textarea Problem

2012-10-10 Thread tnagarnaik
thanx On Wednesday, 10 October 2012 00:53:41 UTC+5:30, Richard wrote: > > textArea.setText(textArea.getText() + newText); should let you append the > data. > > To get data continuously you'll either need to poll the server, which will > be expensive if you have many clients, or use something lik

Re: GWT Designer - MenuBar

2012-10-10 Thread Marco
posted it to: http://code.google.com/p/gwt-designer/issues/detail?id=1 I'm the first who has ever posted an issue to this project (ID 1). Let's see if I get any response. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To view this discus

GWT and Server communication

2012-10-10 Thread Rauf Agayev
1.What is the optimal way to Request and Response with GWT and Web server... 2.Which web service is the best for that communication... -- 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

Re: Are you happy with GWT?

2012-10-10 Thread Joseph Lust
*Praise* I think it is best to assert that *GWT is to Javascript what Scala is to Java*. GWT is a higher level web framework. Sure, your devs can learn every browser quirk and go bare metal, writing verbose code. But they can also just focus on the higher level of logic, interactions and reus

ScriptInjector Failure using PubNub. Expert help/advice?

2012-10-10 Thread Charlie Youakim
Hello Devs, New to GWT but I love it so far. I do have a problem that's easy to reproduce. It is a big problem for me because I want to create a GWT Module for PubNub - a utility we use internally. I created a demo project to test out encapsulation and I have found an interesting problem wit

Re: Are you happy with GWT?

2012-10-10 Thread Charlie Youakim
Great posts. I am truly gracious of all the responses to this question I posted. I feel like we have made the right move going in this direction. On Wednesday, October 10, 2012 1:28:05 PM UTC-4, Joseph Lust wrote: > > *Praise* > > I think it is best to assert that *GWT is to Javascript what Sca

Googlebot dissing my GWT app

2012-10-10 Thread rhodebump
Hi, I have been trying for weeks, but can't get google to update it's index for my GWT application. If i do a google search of my site (site:www.spotmouth.com), only my first page comes up. I have read (many many times) the docs for https://developers.google.com/webmasters/ajax-crawling/ T

Extending GwtTransient

2012-10-10 Thread Thomas Lefort
I would like to extend GwtTransient to allow for parametrized serialisation in gwt rpc. The main use case is to send different version of the same object (with more or less data filled in) based on the call being made or on the type of user making the call. My idea, right now (just an early cha

Re: Are you happy with GWT?

2012-10-10 Thread Shaun Tarves
There is no doubt that what GWT does, it's really good at. However, some things that I've found GWT really isn't good at: 1) Producing clean HTML The structure of GWT "page views," especially with GWT widgets, is really poor. The DOM gets bloated with lots of extra elements that are used for f

CellTable sorting when updating CellTable in MVP architecture

2012-10-10 Thread Shaun Tarves
Hi - I have a presenter that provides data for a CellTable. The presenter holds the ListDataProvider, and attaches that data provider to the cell construct it gets from the view. I am unsure of how to handle column sorting in this case. My presenter periodically refreshes the data in the List

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

2012-10-10 Thread Andrea Boscolo
> > I'm using Cell widgets elsewhere but don't think they'll buy me enough > here because I can't use paging in this UI - I need to display the whole > table. I'm already loading using an async request. Even if you don't use paging, it can increase the rendering speed of a basic, say, flext t

Re: Are you happy with GWT?

2012-10-10 Thread Thomas Broyer
On Wednesday, October 10, 2012 10:13:36 PM UTC+2, Shaun Tarves wrote: > > There is no doubt that what GWT does, it's really good at. However, some > things that I've found GWT really isn't good at: > > 1) Producing clean HTML > > The structure of GWT "page views," especially with GWT widgets, is

Re: Are you happy with GWT?

2012-10-10 Thread Roger Studner
There is no such thing as "producing clean vs not clean" html unless you rely on other peoples widgets. 100% of my widgets are a UIBTemplate.. of my creation… I use GWTQuery (or jquery) to add/remove elements from my widgets. Thus, the HTML is exactly as clean as any HTML that any non-gwt appl

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

2012-10-10 Thread Gal Dolber
I'm also very much interested in this. You can get Elemental to run on pure Java, but it will take a lot of work. Before Elemental came out I did a very similar DOM abstraction and wrote a pure Java implementation for it as well, to get the tests running. Implementing a java version of Elemental s

Re: GWT 2.5 RC2 Is Here!

2012-10-10 Thread Brian Slesinsky
It looks like we updated the checksum in source control but forgot to make the change live. It should be correct now. On Wednesday, October 10, 2012 8:17:03 AM UTC-7, Thomas Broyer wrote: > > > > On Wednesday, October 10, 2012 1:49:05 PM UTC+2, cd wrote: >> >> Hi all, >> >> Is it me, or is the SH

Re: Are you happy with GWT?

2012-10-10 Thread Brian Slesinsky
The original goal of writing clean HTML was for static, document-centric websites where you could do things like run a filesystem search or a web spider to create an index of all your documents, use an HTML editor, or perhaps do a search and replace. And of course it helps with SEO. But how rel

Re: Are you happy with GWT?

2012-10-10 Thread Roger Studner
It helps the most when highly talented html5/css3/jquery people produce mockups etc.. as then translating them to GWT to get i8n, code splitting and a handy way to do an event bus + business logic all in java, is pretty darn easy Roger On Oct 10, 2012, at 6:03 PM, Brian Slesinsky wrote: > The

Re: GWT 2.5 RC2 Is Here!

2012-10-10 Thread Paul Wagland
Great news! This results is massive code reductions for us! Especially with the closure compiler. Wow! The only problem I see so far, is that my issue is still not addressed. For some reason when compiling I am getting two types that seem to have different Oracles, but the same name. Changing

Re: Are you happy with GWT?

2012-10-10 Thread Clint Gilbert
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 1) Has largely been a non-issue for us in practice, since we use UIBinder. We devs take a mockup from our designer, extract chunks of HTML from it, and parameterize them into UIBinder widgets. We end up with an app whose DOM structure is 99% the same

Re: GWT 2.5 RC2 Is Here!

2012-10-10 Thread Brian Slesinsky
Probably not since it isn't a regression. At this point most changes will be after 2.5. (Figuring out a clean test case will help for making that happen.) On Wednesday, October 10, 2012 3:35:33 PM UTC-7, Paul Wagland wrote: > > Great news! This results is massive code reductions for us! Especial

Re: Firefox 16 GWT Plugin

2012-10-10 Thread Brian Slesinsky
I now have an (unsigned) version checked into svn that should work across Windows, Mac, and Linux. Please let me know on this thread whether it works for you. - Brian On Wednesday, October 10, 2012 1:20:28 AM UTC-7, Thomas Broyer wrote: > > > On Wednesday, October 10, 2012 10:17:44 AM UTC+2, ge

How to capture username from user already logged into google apps?

2012-10-10 Thread BRL
Hello All, I am new to GWT. My company uses google apps. I have created a widget that will go on an internal google site and that interfaces with our ticket entry system to post tickets. All of this is working just fine and I have had a lot of fun learning how to do it. Here is what I would

Re: How to capture username from user already logged into google apps?

2012-10-10 Thread Brian Slesinsky
This isn't GWT-specific. I've only done it when running on App Engine, and there it should be fairly simple. The server-side code can ask the user to log in, get the email address, and then pass it to the browser. https://developers.google.com/appengine/docs/java/users/ Without App Engine, I thi

Re: GWT 2.5 RC2 Is Here!

2012-10-10 Thread cd
Thanks, Brian. Best, Erwin Op woensdag 10 oktober 2012 23:45:46 UTC+2 schreef Brian Slesinsky het volgende: > > It looks like we updated the checksum in source control but forgot to make > the change live. It should be correct now. > > On Wednesday, October 10, 2012 8:17:03 AM UTC-7, Thomas Broy

Re: Saving results from GWT-RPC call on client

2012-10-10 Thread JeanV
Very good idea. I also thought of using GSON to convert the result into a string and saving it that way to localstorage On Wednesday, October 10, 2012 4:33:25 PM UTC+2, Roy wrote: > > An alternative is to make the GWT-RPC request using GET instead of POST, > and have the server return cache head