Re: Hibernate as JPA Provider ??

2011-07-02 Thread FrugoFrog
You are missing provider definition in your unit. Glassfish is using default- eclipse Add providerorg.hibernate.ejb.HibernatePersistence/provider below persistence-unit name=Thriftr transaction-type=RESOURCE_LOCAL good luck 2011/7/1 chalu chal...@gmail.com: I have a working Helios

DevMode and setInnerHTML extremly slow.

2011-07-02 Thread bear-z
Hi! I have a following problem. I used to create all tables needed for my application through the FlexTable, but rendering wasn't as fast as I want. So, I've created table that injects all needed elements through the innerHTML and setups handlers through gwt-query. Everything work fine and fast

Re: Google Products using GWT

2011-07-02 Thread Yannis BRES
Hi David ! Would you (or Thomas ? ;-) ) have any shareable insights as to why Google+ seems to be coded in pure Java / closure instead of GWT ? Best regards, Yannis -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this

Re: Google Products using GWT

2011-07-02 Thread Dan
I am interested to know what Google+ is written in too. What leads you to believe it is Java / closure? On Jul 2, 4:45 am, Yannis BRES yaya.at.w...@gmail.com wrote: Hi David ! Would you (or Thomas ? ;-) ) have any shareable insights as to why Google+ seems to be coded in pure Java / closure

MVP best practices, how to expose a view to a presenter?

2011-07-02 Thread Alex D.
Hi guys, I've been trying to find the best answer to the question above for a while now. Here is the problem: * assume you have a view with textbox and a vertical panel. The textbox is used for searching, the vertical panel to display the found results. In order to decouple everything, we'll

Aw: Re: POJO to JSON

2011-07-02 Thread dd
Xtext is a great tool. A good starting point for reading is http://www.eclipse.org/Xtext/documentation/ The Xtext plugin for eclipse ships with the so called 'domain model' example. It is a DSL (Domain Secific Language) for describing your entities and their relationships. Next step is to

Re: Google Products using GWT

2011-07-02 Thread Thomas Broyer
On Saturday, July 2, 2011 1:24:42 PM UTC+2, Dan wrote: I am interested to know what Google+ is written in too. What leads you to believe it is Java / closure? See http://news.ycombinator.com/item?id=2717174 -- You received this message because you are subscribed to the Google Groups

Re: MVP best practices, how to expose a view to a presenter?

2011-07-02 Thread Thomas Broyer
Keep a reference on the view in a field; and if you want to make sure you won't use the view after the activity is stopped, reset the field back to null in onCancel and onStop. What I generally do is to inject/pass the view in the activity's constructor and store it in a field; and only

how to get iphone-like changing view animation

2011-07-02 Thread dadada
Hi all, I am looking for a library to do the above. I know about gwt-fx and gwt-jquery. Is there something else? Just want to know if any one done a iphone-like transition animation. Which library did you guys use? And how did you do it? For instance, if you have a verticalpanel with htmlpanel

gwt-log or GWT logging API

2011-07-02 Thread dadada
Hi all, Just want to know which logging library do you guys use? And why? Or is there another logging library besides the above two? /bryan -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

Re: how to get iphone-like changing view animation

2011-07-02 Thread Gal Dolber
You can use the LayoutPanel to do that kind of animations, http://code.google.com/webtoolkit/doc/latest/DevGuideUiPanels.html On Sat, Jul 2, 2011 at 10:24 AM, dadada ytbr...@gmail.com wrote: Hi all, I am looking for a library to do the above. I know about gwt-fx and gwt-jquery. Is there

How to use custom font on gwt uibinder?

2011-07-02 Thread Bryan Lim
Hi, If i have a ttf, how can i use it on uibinder? I placed it in font directory in my war and inserted the following line in html. link href='font/LobersterTwo-Regular.ttf' rel='stylesheet' type='text/css' but it doesn't work. any advice? -- You received this message because you are

Re: Google Products using GWT

2011-07-02 Thread Yannis Bres
What leads you to believe it is Java / closure? Grmpf ! I meant pure JavaScript not Java ! I hope that the rest of the sentence helped you to auto-correct... ;-) Having a look at the web page sources and inspecting the DOM contents quickly rules out GWT, at least as a core framework

Re: Google Products using GWT

2011-07-02 Thread Dan
Thanks makes sense. The Java bit throw me :) On Jul 2, 4:42 pm, Yannis Bres yaya.at.w...@gmail.com wrote: What leads you to believe it is Java / closure? Grmpf !  I meant pure JavaScript not Java !  I hope that the rest of the sentence helped you to auto-correct...  ;-) Having a look at

Re: how to get iphone-like changing view animation

2011-07-02 Thread ciosbel
As said by Gal, Layout panel gives you max flexibility. A quick sample is the DeckLayoutPanel that put children in a deck with that kind of transition you are expecting. http://google-web-toolkit.googlecode.com/svn/javadoc/2.3/index.html?com/google/gwt/user/client/ui/DeckLayoutPanel.html --

Re: MVP best practices, how to expose a view to a presenter?

2011-07-02 Thread Alex D.
That sounds right :). -- 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/-/0QtPu3f_BQIJ. To post to this group, send email to

sanjay kanwar wants to chat

2011-07-02 Thread sanjay kanwar
--- sanjay kanwar wants to stay in touch better using some of Google's great new products. If you already have Gmail or Google Talk, visit: http://mail.google.com/mail/b-dd5deb43a3-9783fbc168-rnpfJbeHE_wROMultQF-yjfZKUE You'll

Re: How Do Override Default PopupPanel;also, Why Would App Render In Chrome but not IE

2011-07-02 Thread Eric Atkinson
On Jul 1, 4:59 pm, Jeff Larsen larse...@gmail.com wrote: for the rightclick to work on the tree item, you also have to do event.preventDefault(); which stops the default browser behavior. Tried this; still didn't stop the default behavior. I think it's the browser is doing this; if so, I

Re: Hibernate as JPA Provider ??

2011-07-02 Thread chalu
Thanks a bunch, the provider element did it for me. On Jul 2, 8:18 am, FrugoFrog frugof...@gmail.com wrote: You are missing provider definition in your unit. Glassfish is using default- eclipse Add   providerorg.hibernate.ejb.HibernatePersistence/provider below persistence-unit name=Thriftr

GPE tooling

2011-07-02 Thread jeffma...@jeffmaury.com
Hello, I am writing an M2Eclipse extension that deals with GWT Maven projects. I want to generate GPE related information (GWT nature, GWT classpath container,...). I notice there are some nice classes in GPE that deals with it but these classes are exported but with restrictions through the OSGI

Request Builder

2011-07-02 Thread sanjay kanwar
Hi There, I have a task in which i hav to use Request Builder and JSON to fetch the data frm the php server and show it in the screen in the form of image representating tht data. I am new to jst a recent graduate and new to this technology any help about how to proceed would be very helpful.

Cant get a certain url ?

2011-07-02 Thread Jay Vyas
Hi Guys : I'm trying to retrieve data from some URLs in the Client. the first one is this : http://eutils.ncbi.nlm.nih.gov/entrez/eutils/esearch.fcgi?db=pubmedretmode=xmlrettype=abstractid=21698849+21647610+21610195+21545256 works just fine. response code 20. however, if i change esearch to

Re: how to get iphone-like changing view animation

2011-07-02 Thread Bryan Lim
Hi, Thanks everyone. But how do I create an iphone-like animation on layout panel? The tutorial did not show such example. On Sun, Jul 3, 2011 at 1:39 AM, ciosbel andrew...@gmail.com wrote: As said by Gal, Layout panel gives you max flexibility. A quick sample is the DeckLayoutPanel that

[gwt-contrib] Simplify the use of TckCompileTestCase by always using the module named (issue1467811)

2011-07-02 Thread nchalko
Reviewers: rchandia, Description: Simplify the use of TckCompileTestCase by always using the module named TckTest.gwt.xml. Add asserts for generator compile time errors. Please review this at http://gwt-code-reviews.appspot.com/1467811/ Affected files: M

[gwt-contrib] RR: Retiring Safari 3 in a future release of GWT

2011-07-02 Thread Eric Ayers
Due to the declining popularity of the Safari 3 browser (around .1% of all web users according to some sources) and increasing difficulties of keeping test and development resources available, the GWT team would like to retire official support for Safari 3 in an upcoming release. I thought I