(RequestFactory) ValueBoxEditor.class : peer.setValue asking for a cast to String ?

2013-08-08 Thread aurelie . virgile
Hi there, I do have a Strange behaviour on my project regarding class ValueBoxEditor. Project is using maven, rf, hibernate, spring. Focusing on the problem, i'm trying to get values from a postgre database and grab two datas to a modal window. A String and a short value. (postgre

Re: (RequestFactory) ValueBoxEditor.class : peer.setValue asking for a cast to String ?

2013-08-08 Thread aurelie . virgile
I Forgot. Tried to change g:TextBox stylePrimaryName={style.editField} / to g: IntegerBox but without success g: ShortBox doesn't exist ? Pierre Le jeudi 8 août 2013 09:28:50 UTC+2, aurelie...@gmail.com a écrit : Hi there, I do have a Strange behaviour on my project regarding class

Re: solution for vector graphics with GWT?

2013-08-08 Thread Dean S. Jones
True. I had previously coded up a full GWT binding for Raphael, some years back, I still have that around. The only issue is to get Raphael to really work nice with GWT events, I had to bind the Raphael Elements up into Widgets, and that was fine with a couple hundred primitives, but when it

Re: solution for vector graphics with GWT?

2013-08-08 Thread Dean S. Jones
True. I had previously coded up a full GWT binding for Raphael, some years back, I still have that around. The only issue is to get Raphael to really work nice with GWT events, I had to bind the Raphael Elements up into Widgets, and that was fine with a couple hundred primitives, but when it

Re: (RequestFactory) ValueBoxEditor.class : peer.setValue asking for a cast to String ?

2013-08-08 Thread Ümit Seren
Not sure but you could try a IntegerBox ( http://www.gwtproject.org/javadoc/latest/com/google/gwt/user/client/ui/IntegerBox.html) or ValueBox ( http://www.gwtproject.org/javadoc/latest/com/google/gwt/user/client/ui/ValueBox.html) ? On Thursday, August 8, 2013 10:04:25 AM UTC+2,

Re: GWT changing style during drag event takes too long

2013-08-08 Thread Paul Robinson
Your English is very good. No problems there! I don't know the answer to your problem exactly as you're written it, but you could possibly achieve the same thing a different way. Take a look at the tree dag-and-drop method done here: https://code.google.com/p/gwt-dnd-tree/ It indicates the

Re: Export CellTable's selected rows into a csv file

2013-08-08 Thread Thad Humphries
If your server side still has a copy of your list, you can send references to the rows by row number (i thru n) or some sort of row id set in a servlet call. The servlet could build the CSV (Apache Commons has a CSV module) and return it to the browser with the MIME text/csv so the browser

Gwt-Rpc returning empty objects(Spring+Jpa2)

2013-08-08 Thread med amine nabigh
I am trying to display data from the databae,but the returning objects are empty. jpaDAO: public ListE findAll() { Object res = getJpaTemplate().execute(new JpaCallback() { public Object doInJpa(EntityManager em) throws PersistenceException { Query q =

Re: GWT 2.0.2 and Firefox

2013-08-08 Thread Sai Srinivas
This did not work for me, have you had this issue again? if so, is thre any other way to fix it. On Friday, March 12, 2010 8:43:51 AM UTC-6, Ronan wrote: The problem seems to be in the Firefox plug-ins I had installed. I did this to solve the problem: - uninstalled Firefox - restarted

TypeError: $doc.body.attachEvent is not a function

2013-08-08 Thread Sai Srinivas
I'm running my application on the firefox, i get this error. I've followed a post in forum, uninstalled firefox restart machine re install try the application get the same error mentioned above. Was anyone able to fix this issue? Thanks. -- You received this message because you are

Re: TypeError: $doc.body.attachEvent is not a function

2013-08-08 Thread Jens
'attachEvent' is Internet Explorer specific and is used in com.google.gwt.user.client.impl.DomImplTrident.java. If Firefox executes it then GWT thinks your FireFox browser is Internet Explorer (check the user agent string of your FireFox browser) or you use a GWT library that has messed up

Popup Panel sizing issues

2013-08-08 Thread linda . cooper
I need to change the width of a popup panel. I know you cannot directly set the width/height of this panel using set width/setheight but I would like to know if there is a workaround for this. Currently, we have the xml file setup as follows: ui:UiBinder... g:FlowPanel

Math Expression Evaluator for GWT.

2013-08-08 Thread Mayank Singh
Hi, Can anybody let me know is there any Math expression evaluator available for GWT. Because I have tried Java Evaluators but they throwing exceptions as GWT will not covert all required java files to JavaScript. So, please help me out with this problem. Help will be Appreciated. Thanks

Re: Math Expression Evaluator for GWT.

2013-08-08 Thread Juan Pablo Gardella
Check here: http://www.gwtproject.org/doc/latest/RefJreEmulation.html 2013/8/8 Mayank Singh mayank.maes...@gmail.com Hi, Can anybody let me know is there any Math expression evaluator available for GWT. Because I have tried Java Evaluators but they throwing exceptions as GWT will not

How to create SideBar in GWT

2013-08-08 Thread df
Hello How I Can create a sidebar which shows after moving and hides after leaving? Thanks -- 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

gwt navigation with 3rd party app in iframe

2013-08-08 Thread Lance Frohman
I have a GWT application with navigation designed using the samples (Place,Activity,EventBus ...) There is a navigation bar, and a Panel where the actual navigation takes place. In some cases, the panel is filled with a third party app using a com.google.gwt.user.client.ui.Frame iframe. The

Re: gwt navigation with 3rd party app in iframe

2013-08-08 Thread Jens
You need to cache the activity that displays the 3rd party app so it does not get recreated in your ActivityMapper each time you navigate inside the 3rd party app. So your URLs should look like /#ThirdPartyAppPlace:app=page1 /#ThirdPartyAppPlace:app=page2param=x /#ThirdPartyAppPlace:app=page3

Re: How to create SideBar in GWT

2013-08-08 Thread asif . tmcp
Hi, Did you mean something like this effect ? http://tympanus.net/codrops/2009/11/30/beautiful-slide-out-navigation-a-css-and-jquery-tutorial/ or this? http://www.webresourcesdepot.com/sliding-top-menu-with-jquery/ Either one can be achieved by 1. Integrating the native jquery plugins via jsni

Re: CSSResource and href

2013-08-08 Thread asif . tmcp
Thanks Jens, for the detailed explanation. I think i understand it now more clearly than before. On Tuesday, August 6, 2013 12:49:18 PM UTC-4, Jens wrote: The first solution actually didn't work. Each hyperlink is wrapped in a div /div by gwt. The setstyle or add style would set/add to the

Re: [gwt-contrib] Nextgen GWT/JS Interop (Public) (google-web-toolkit-contributors@googlegroups.com)

2013-08-08 Thread Brian Slesinsky
It might be nice to be able to say that anything defined in a .d.ts can be imported into GWT. This will make it easier to work with JavaScript programmers since they don't have to write any Java code. So perhaps it's worth making sure that generating the Java interfaces from .d.ts files will work?

Re: [gwt-contrib] Nextgen GWT/JS Interop (Public) (google-web-toolkit-contributors@googlegroups.com)

2013-08-08 Thread Xavier M.
Yep, insuring a clear interface between different world is always valuable and even mandatory in my opinion.. Typescript .d.ts files have already made the job, so why not using this syntax. As a early adopter of gwt in 2006, i could also say that I'm an early adopter of typescript on real projects

Re: [gwt-contrib] Nextgen GWT/JS Interop (Public) (google-web-toolkit-contributors@googlegroups.com)

2013-08-08 Thread Ray Cromwell
As cool as I think TS is, there are far more lines of code out there in Js, some even with JsDoc type assertions, so I think the latter would be more useful as a first pass. JsDoc is comments so it works with existing JS. We could explore importing libraries defined in TS, Dart, haXe, et al via

[gwt-contrib] Google team meeting notes for August 7 (and earlier)

2013-08-08 Thread Brian Slesinsky
I haven't been sending out emails for our meetings. Let's catch up: August 7th: - John got a hello world app running using separate compilation. We talked a bit about how it might get pulled back into GWT. - Brian: Firefox architecture changes may break the Development Mode plugin by the end of

Re: [gwt-contrib] Nextgen GWT/JS Interop (Public) (google-web-toolkit-contributors@googlegroups.com)

2013-08-08 Thread Xavier Mehaut
I desagree with this assertion ; the goal is not to interop with ts, haxe, coffee, ..., but only with js. Moreover the future of js is ecmascript 6, so ts is a good candidate to express properly an interface; this is not the case IMO of a jsdoc like solution which is verbose and not so precise

Re: [gwt-contrib] Nextgen GWT/JS Interop (Public) (google-web-toolkit-contributors@googlegroups.com)

2013-08-08 Thread Brian Slesinsky
I think that's a good point; someone went through the trouble of creating these definition files so it would be nice to be able to use them, even without using TypeScript at all. (On the other hand, how many of those libraries would you say are relevant for GWT? I don't see us using backbone.)

Re: [gwt-contrib] Nextgen GWT/JS Interop (Public) (google-web-toolkit-contributors@googlegroups.com)

2013-08-08 Thread Goktug Gokdogan
First of all, as long d.ts works, end user should not care if the compiler directly understands it or there is a converter in between. Even the starting point is d.ts or type annotations, in order to have good IDE support you still need a java representation so that your code will compile and

[gwt-contrib] Re: Google team meeting notes for August 7 (and earlier)

2013-08-08 Thread Jens
- Brian: Firefox architecture changes may break the Development Mode plugin by the end of the year. (The ContextStack service went away [1] and word is that they will be making more architectural changes [2]. This isn't the end of Development Mode because we still have Chrome, but we

[gwt-contrib] Could someone review patch for IE10 permutation and MSPointerEvents support, please?

2013-08-08 Thread Sami Kaksonen
On behalf of author, I'm looking for reviewers for https://gwt-review.googlesource.com/#/c/2421/ Despite the commit message this changeset is ready to be reviewed. :) Any comments / +1's would be appreciated Related issue: Issue 8063: Add basic support for IE

[gwt-contrib] Re: Google team meeting notes for August 7 (and earlier)

2013-08-08 Thread Brian Slesinsky
Our plan is to make Super Dev Mode compile faster. Plan B is to use an extended release of Firefox for a while. (I believe Firefox 24 is the next one.) Despite appearances, I'm not actually a C++ programmer and I'm not plugged into the Firefox community enough to know how realistic it is that