Re: Development view Open / Open With don't work

2010-10-11 Thread Daniel Kurka
which version of gwt are you running? 2010/10/11 Rud rudmerr...@gmail.com I am using the GWT plugin in Eclipse but seeing different behariors on two machines. On one machine after running my app the development view open / open with menu brings up the application in a browser. On the other

Re: newbie - GWT.getHostPageBaseURL() + greetingService?input= + string);

2010-10-11 Thread Daniel Kurka
Hello Ray, if you are wondering what url the gwt async uses, you can see this in firebug (network tab). I think you are missing your module in the url. Dont use GWT.getHostPageBaseURL() use GWT.getModuleBaseURL() and you should be fine. -Daniel Kurka 2010/10/11 Ray Tayek rta...@ca.rr.com

Re: Set up of GWT site

2010-10-11 Thread alexoffspring
mumble mumble ..i'm not sure, but i think that the example does not particularly suit since SimplePanel can have only one Widget; so you can only add one hyperlynk (About Me, about), let's say, and not the (feedback) one, so you cannot switch. Moreover, if you decide to change panel and use the

Re: class HorizontalPanel has no appropriate setUifield() method

2010-10-11 Thread Giuseppe Sacco
On 11 Ott, 07:41, Prashant Hegde prashant.he...@gmail.com wrote: In your UiBinder XML file seems like you have a typo - Change *uifield *to * ui:field* I couldn't believe I am so thoughtless... Thanks a lot Prashant -- You received this message because you are subscribed to the Google Groups

Re: GWT portlets application

2010-10-11 Thread christophe.jour...@stambia.com
Thanks for the answers but finally I found a gwt library to make simple portlets, better than GWT Windows. This is GWT Drag-and-Drop : http://code.google.com/p/gwt-dnd/ Thanks again. Christophe On 7 oct, 21:55, Armishev, Sergey sarmis...@idirect.net wrote: If you want multi window interface

Re: GWT can't compile for simple example

2010-10-11 Thread heros
It's seem the problem coming from GWT complier can't get or loss main class (Testgwt ) to bind with generated uibinder code (Testgwt_BinderImpl.java). But when I move the uibinder (Testgwt.ui.xml) to another class (HelloWorld.java + HelloWorld.ui.xml) and then call it in main class, GWT complier

Re: Eclipse, JSNI and Alt+Shift+F

2010-10-11 Thread Thomas Broyer
On 9 oct, 04:05, Sandler smike...@gmail.com wrote: Hi, im not quite sure what i did, but native methods with a jsni block get handled like normal comments. This looks really terrible when i try to format the classes. Is there any way to get rid of that? Don´t want to reinstall eclipse. Code

Re: Integration of hibernate with GWT

2010-10-11 Thread Thomas Broyer
On 9 oct, 18:22, Y2i yur...@gmail.com wrote: Thomas, when you say it shouldn't be that hard to port to any server, what do you mean by the server?  A javax.servlet container like Jetty or an application server, like Geronimo, Glassfish, etc.? I meant javax.servlet container (does that really

Re: Development view Open / Open With don't work

2010-10-11 Thread Thomas Broyer
On 11 oct, 02:07, Rud rudmerr...@gmail.com wrote: I am using the GWT plugin in Eclipse but seeing different behariors on two machines. On one machine after running my app the development view open / open with menu brings up the application in a browser. On the other machine it won't. Instead

Re: some newbie questions

2010-10-11 Thread Thomas Broyer
On 9 oct, 04:15, Ray Tayek rta...@ca.rr.com wrote: hi, starting a project using eclipse galileo and a week old download of gwt eclipse plugin.. i sometime get a: A widget that has an existing parent widget may not be added to the detach list error when doing the following type of thing:

Re: newbie - GWT.getHostPageBaseURL() + greetingService?input= + string);

2010-10-11 Thread Ray Tayek
At 11:22 PM 10/10/2010, you wrote: Hello Ray, if you are wondering what url the gwt async uses, you can see this in firebug (network tab). cool I think you are missing your module in the url. Dont use GWT.getHostPageBaseURL() use GWT.getModuleBaseURL() and you should be fine. that and

Good GWT development tools

2010-10-11 Thread lalit
Our project with time has become bigger. We are finding that the change-compile-run cycle is becoming bigger and bigger, especially if we change the server side code. We are using Spring, Hibernate and Gilead (for taking Entities to the front layer). Do any one knows about better tools or

Re: Good GWT development tools

2010-10-11 Thread András Csányi
On 11 October 2010 11:36, lalit lalit.bh...@gmail.com wrote: Our project with time has become bigger. We are finding that the change-compile-run cycle is becoming bigger and bigger, especially if we change the server side code. We are using Spring, Hibernate and Gilead (for taking Entities to

JavaScriptException every time i make a rpc call more than one

2010-10-11 Thread jsmith
Hi, when i load my application the first time, everythink works. but when i interact with it and i make a rpc call a second time, my app crashes with a JavaScriptException: i have no idea how to solve this. best regards com.google.gwt.core.client.JavaScriptException: (null): null at

Re: JavaScriptException every time i make a rpc call more than one

2010-10-11 Thread jsmith
i got a hostpage which uses some javascript on its own for styling purposes. when i use a blank page just for testing, the error doesnt't occur anymore. so maybe the gwt code and the javascript in the host page overlap and then cause problems. On Oct 11, 12:16 pm, jsmith 3p1...@googlemail.com

Re: JavaScriptException every time i make a rpc call more than one

2010-10-11 Thread jsmith
i found the error: the guy who was designing the host page for me has included a form tag in the webpage. this tag screwed my application i removed it and now it works fine On Oct 11, 12:46 pm, jsmith 3p1...@googlemail.com wrote: i got a hostpage which uses some javascript on its own for styling

Re: Good GWT development tools

2010-10-11 Thread Georg Sendt
Do you really need to compile your project every time you do a change? Does hosted mode not work for you? You can reduce the compilation time by reducing the list of supported browsers: add set-property name=user.agent value=gecko/ to your *.gwt.xml file to only support Firefox during your

Re: TabLayoutPanel with Activity

2010-10-11 Thread Richard Allen
Try setting the CSS height property to 100% on the TabLayoutPanel. -Richard On Oct 10, 11:13 pm, Rud rudmerr...@gmail.com wrote: On further exploration I find that the overflow is not the culprit. I compared the information in the developer tools for the working and non-working versions. In

Re: GWT HTML class won't follow file:/ links

2010-10-11 Thread jhulford
On Oct 8, 12:58 pm, Thomas Broyer t.bro...@gmail.com wrote: On 8 oct, 15:57, jhulford jhulf...@gmail.com wrote: There's nothing that should be preventing it from working Well, except the browser itself! AFAIK, Firefox at least won't let you open file: links from an http: page.

Re: TabLayoutPanel with Activity

2010-10-11 Thread Falcon
TabLayoutPanel either has to be a direct descendant of one of the other LayoutPanels or needs an explicit height to be set (and % won't work because of the structure). I really dislike that the panel won't take up as much space as it needs by default, or at least have an option to work that way,

Re: newbie - GWT.getHostPageBaseURL() + greetingService?input= + string);

2010-10-11 Thread jhulford
Are you still using the provided GreetingServiceImpl on server side that expects a GWT RPC call? Because the way you're setting this up is not sending a GWT RPC request, you're just get/put/post'ing that plaintext request. It's perfectly valid to do that, but if your GreetingService servlet is

Re: Set up of GWT site

2010-10-11 Thread Brian
I was thinking that every page (including what's replaced when About is clicked) contains a Feedback link... The idea is, you're just setting the content of a panel at runtime, not navigating to a new .html page. For instance, if your app is setup using a DockLayoutPanel, when a link is checked,

Re: Set up of GWT site

2010-10-11 Thread Brian
... and if you were using a VerticalPanel, you could either replace the whole thing, or replace widget(s) : VerticalPanel vp = new VerticalPanel(); SimplePanel sp = new SimplePanel(); // setWidget when history changes vp.add(new Label(Stay at the top)); vp.add(sp); vp.add(new Label(Stay at the

using CompositeCell in CellTable?

2010-10-11 Thread Spitzname
Hi, I tried to use a CompositeCell in a Celltable, but with no success. Can anyone write me a short example to add a column as CompositeCell in the CellTable, please? I miss some short introduction to this powerful topic and unfortunately the use is very inconsistent. Thanks in advance! -- You

linux + development mode

2010-10-11 Thread Racka
Hi all, i'm using arch linux and my browser is firefox (and blackbox as window manager, no desktop manager at all). When i try to start a hosted mode session, my browser asks for the development plugin, which I allow to install. But when i restart my browser everything remains the same. It asks

Client side caching of the .nocache,js and other included .js and .css files

2010-10-11 Thread PeterT
We have a project.nocache.js file that included other .js and .css files. The generated project has a long GUID like name which changes each compilation, so that file is correctly loaded, but the problem we see is that when we change the other include files on the server, the client does not get

DockLayoutPanel causes size problem for input in FF and IE

2010-10-11 Thread Mattias Svensson
I have created a simple widget from a UiBinder using a DockLayoutPanel like below (GWT 2.0.4): g:DockLayoutPanel unit=PX g:north size=200 g:TextArea/g:TextArea /g:north /g:DockLayoutPanel And the loaded this into page with

GWTphp to communicate with PHP server

2010-10-11 Thread saji
Hi i am using GWT for developing an user interface. I run a mongoose webserver where my PHP server script resides. I cant find any way to make call from my user interface developed to php script. Any help may be appreciated. Thanks in advance.. -- You received this message because you are

Tutorial/material for how to customize the ROO + GWT project?

2010-10-11 Thread bdar
I have been able to generate the sample project using for GWT and GAE ... using DATANUCLEUS and GOOGLE_APP_ENGINE similar to what is provided in the roo tutorial. persistence setup --provider DATANUCLEUS --database GOOGLE_APP_ENGINE But i have been struggling with the customization of the

GWT Developer plugin for IE - install error 1612

2010-10-11 Thread dll argh
Hi When I attempt to install the GWT Developer plugin for IE it fails with this error: The installer encountered error 1612: The installation source for this product is not available. Verify that the source exists and that you can access it. I'm using IE7 on windows vista. It appears that a

Route animation in google maps with GWT

2010-10-11 Thread Jan
Hi all, For an actual project, we need to evaluate movements of motor-ships. The position datas are sent from a gps router on the ships and are saved in a database on our server. One of our goals is to show the driven way of one or more ships between a specified time as an animation. Our

Help me out! ... i m facing this Issues in Label !

2010-10-11 Thread Somu
Dear All, When i m using Multiple Labels by gwt-Label tag, it is displayed one by one. e.g. my code is like, gwt-LabelLabel 1/gwt-Labelgwt-LabelLabel 2/gwt-Labelgwt- LabelLabel 3/gwt-Label gwt-LabelLabel 5/gwt-Labelgwt-LabelLabel 6/gwt-Labelgwt- LabelLabel 7/gwt-Labelgwt-LabelLabel 8/gwt-Label

Best practice GWT development with Glassfish

2010-10-11 Thread Brausepaul
Hi, I worked through the GWT tutorial and GWT Designer tutorial and would like to port a simple existing JSP/Struts 1 application to GWT. The application persists its data to a HSQL database. Up to now I use Glassfish 2 and Eclipse on a Linux computer for my personal development needs. What is

Multiple Pages

2010-10-11 Thread Elienan
Hi all, I'm new at GWT, trying to develop my first application with this tool. I already read a lot about multiple pages, and I followed the most common suggestion of have only one page, and then change pannels to change pages. I want to develop a set of pages that allow the users to go back and

Compiling for release?

2010-10-11 Thread Thomas McKay - www.winebythebar.com
I'm getting the message: GWT module 'com.winebythebar.bottles.WbtBBottles' may need to be (re)compiled when running w/o the '?gwt.codesvr=127.0.0.1:9997' param. I'm unsure how to compile this project for release. Environment: eclipse helios, windows -- You received this message because you

Conerting String to HashMap

2010-10-11 Thread shilpa
Hi, I am actually sending an ajax request and and storing a HashMap in a JSONStringer . In response i get a JSONStringer in the format {codes: {CD1:TEXT1,CD2:TEXT2}}. So now i retrieve the value using a RecordList and when i retrieve the value of codes attribute i.e

Beginning JDO Question

2010-10-11 Thread Pedro Ferreira
Hi There, I am beginning an GWT + GAE Application, and I have a simple question, that I think you guys knows the answer JIT: I want to do this: Facts: 1. I have an entity in my server package (aplicationid.server.MyEntity) 2. I have a method that returns a MyEntity object I want to:

Re: Route animation in google maps with GWT

2010-10-11 Thread Brian
GWT is Javascript, at least what the user sees on the website. One idea, is to get all the data from your server for a ship's route as an array of lat/lng objects, then set up a Timer() object that calls your callback every 30ms or so, and you just set the map marker position to the next entry

Re: Help me out! ... i m facing this Issues in Label !

2010-10-11 Thread Hilco Wijbenga
On 9 October 2010 03:17, Somu somanatha...@gmail.com wrote: When i m using Multiple Labels by gwt-Label tag, it is displayed one by one. e.g. my code is like,  gwt-LabelLabel 1/gwt-Labelgwt-LabelLabel 2/gwt-Labelgwt- LabelLabel 3/gwt-Label gwt-LabelLabel 5/gwt-Labelgwt-LabelLabel

Re: GWT HTML class won't follow file:/ links

2010-10-11 Thread Greg Dougherty
Thanks. That would explain it. On Oct 8, 11:58 am, Thomas Broyer t.bro...@gmail.com wrote: On 8 oct, 15:57, jhulford jhulf...@gmail.com wrote: There's nothing that should be preventing it from working Well, except the browser itself! AFAIK, Firefox at least won't let you open file: links

Hook up HTML with GWT

2010-10-11 Thread Il Lupo
I have been searching around for this with no luck so I decided to post the question hoping to get a quick and straight answer. Is there a way to hook up GWT java methods/classes to straight HTML? I can see a way to do it with DIVs (retrieval via id) but cannot find a way to do it on other HTML

Re: Multiple Pages

2010-10-11 Thread Thomas Broyer
On 10 oct, 19:38, Elienan elie...@gmail.com wrote: Hi all, I'm new at GWT, trying to develop my first application with this tool. I already read a lot about multiple pages, and I followed the most common suggestion of have only one page, and then change pannels to change pages. I want to

Re: Best practice GWT development with Glassfish

2010-10-11 Thread jocke eriksson
This is how I do it, but it requires that you use maven. If you don't use maven ignore this post. Create a maven pom project Create a ear module Create a ejb module Create a web module Create a client module also web add the client as an web overlay to the web module. Deploy the ear to

GWT Maven gwt:compile issue

2010-10-11 Thread tc
I am using the new maven plugin (http://google-web- toolkit.googlecode.com/svn/2.1.0.M3/gwt/maven) that is being used in the new 2.1 development. I have setup a multi module maven project where one of the modules contains a GWT module that contains mainly just shared object between server /

Re: Good GWT development tools

2010-10-11 Thread Greg Dougherty
Reduce the number of compiled locales by adding this line to your *.gwt.xml file set-property name=locale value=en/ So now only english locale is compiled [ERROR] The value en was not previously defined. [ERROR] Line 23: Unexpected exception while processing element 'set- property' So, what

Re: Hook up HTML with GWT

2010-10-11 Thread Jeff Chimene
On 10/11/2010 09:30 AM, Il Lupo wrote: I have been searching around for this with no luck so I decided to post the question hoping to get a quick and straight answer. Is there a way to hook up GWT java methods/classes to straight HTML? I can see a way to do it with DIVs (retrieval via id) but

Re: using CompositeCell in CellTable?

2010-10-11 Thread Spitzname
I tried something and this works, but I don't know how and why. ListHasCellFoo, ? bar = new ArrayListHasCellFoo, ?(); bar.add(new ColumnFoo, String(new Cell()) { @Override public CellString getCell() { return cell; } @Override public

Re: Hook up HTML with GWT

2010-10-11 Thread Jim Douglas
Or look at this: http://google-web-toolkit.googlecode.com/svn/javadoc/2.1/com/google/gwt/user/client/ui/HTMLPanel.html On Oct 11, 10:20 am, Jeff Chimene jchim...@gmail.com wrote: On 10/11/2010 09:30 AM, Il Lupo wrote: I have been searching around for this with no luck so I decided to

Could it be that GWT internally modifies cookie?

2010-10-11 Thread denis56
His to everyone, We are experiencing a wicked behavior on the web page that uses one GWT component running regular updates. Maybe someone could provide an insight. The thing is that after a couple of PRC requests you can see in Firebug that the sessionid sent to client on previous response does

Re: TabLayoutPanel with Activity

2010-10-11 Thread Rud
Arrgggh!!! That was it. I would have sworn I tried that. I know I did on everything else that makes up the panel. @Falcon - it did work with a %. Not disputing your assertion, just stating my experience. This panel is so useful but strange... Rud http://www.mysticlakesoftware.com On Oct 11,

Recommendations for improving performance of a mobile application

2010-10-11 Thread denis56
Hello to everyone, We decided to give it a try programming a mobile application with GWT - frequent RPC updates, very component-oriented and frequently changing data. At the moment we try to meet bearable performance benchmarks since current performance is so dismal. To change to a different

Re: Good GWT development tools

2010-10-11 Thread David Chandler (Google)
You can also use the -draftCompile flag to skip optimizations. Don't do this on your final production build, but it will save lots of time in development. Of course, hosted mode is best. /dmc David Chandler Developer Programs Engineer, Google Web Toolkit Atlanta, GA USA On Oct 11, 1:15 pm, Greg

Re: TabLayoutPanel with Activity

2010-10-11 Thread Falcon
Ah, no, you're right. % on height wouldn't work in my specific situation but I think that was due to some positioning tricks I was having to do (and not being able to use a LayoutPanel as a parent), which wouldn't be applicable in your particular situation. On Oct 11, 1:19 pm, Rud

Re: Good GWT development tools

2010-10-11 Thread Sorinel C
Are you using the localWorkers in the GWT compiler command line, to use the n-CPU-cores that you have? Read more here: http://ui-programming.blogspot.com/2009/12/gwt-speed-up-compilation-in-eclipse.html Cheers! And if you like it, don't be shy to click on 1 ad or 2 -- you know, for fun :) --

Re: Best practice GWT development with Glassfish

2010-10-11 Thread Brausepaul
Hi Jocke, thanks for your answer. Unfortenately I don' use Maven and I hesitate to introduce it just to improve GWT development. I wonder how other people work with their GWT project targeted for Glassfish or even Tomcat, for example. Maik On 11 Okt., 18:48, jocke eriksson jock...@gmail.com

Re: GWT Maven gwt:compile issue

2010-10-11 Thread Travis Camechis
I figured it out. I had to modify the resources section to include the module xml file ( it was getting left out ) along with the source code for the module. All is happy now. On Mon, Oct 11, 2010 at 1:09 PM, tc camec...@gmail.com wrote: I am using the new maven plugin (http://google-web-

Re: Best practice GWT development with Glassfish

2010-10-11 Thread Filipe Sousa
On Oct 10, 6:47 pm, Brausepaul maik.himst...@googlemail.com wrote: Hi, I worked through the GWT tutorial and GWT Designer tutorial and would like to port a simple existing JSP/Struts 1 application to GWT. The application persists its data to a HSQL database. Up to now I use Glassfish 2 and

Re: Unable to use GWT Dev Ext 1.0.7511 for FireFox 3.6.10 on 64bit SUSE 11.3

2010-10-11 Thread Sorinel C
Try the links from point 2 of this article: http://ui-programming.blogspot.com/2009/12/update-your-application-to-gwt-20.html Cheers! PS: my latest tool: http://cool-movie-browser.blogspot.com/ -- You received this message because you are subscribed to the Google Groups Google Web Toolkit

RE: Recommendations for improving performance of a mobile application

2010-10-11 Thread Armishev, Sergey
Regarding slow RPC calls. Just try to send incremental data changes, only the data that been changed/added/deleted and cache main data on client. You might have thousands of items but only few of them or nothing been changed between RPC calls. I usually send full update when number of changes

Re: Hook up HTML with GWT

2010-10-11 Thread Il Lupo
Thanks for the replies but I am not sure I can do much with those, though I may not be looking at things the right way. Let me try to explain a bit better (hopefully). RootPanel.get(String id) returns you a RootPanel for the element with the given id. That only works for certain top level

SelectionCell and CellTable

2010-10-11 Thread Ed M
After reviewing the updated GWT CellTable showcase code samples, I found myself stuck with something I hope is relatively easy for more experienced folks out there. the following is a snippet from the showcase which is at the heart of the issue. final Category[] categories =

Classloader, Jetty, and OSGI

2010-10-11 Thread Viktoriya Sokolova
Hi. I get the exception (below) when I try to start up my jetty server over OSGI while my GWT (2.0.3) client is up. If my GWT client is not up, the server starts up no problem, and I can bring up the client with no errors. However, if my client is up, when I shut down and restart the server, it

Create Namespace Aware XML Elements on client

2010-10-11 Thread John Maitland
I'm trying to create XML document on the client, which is namespace aware, but on Firefox any namespace attributes are not included in the element. I believe firefox requires the new nodes to be created by calling createElementNS, but this is not present at XMLParserImpl.java. Has anyone else seen

Re: Recommendations for improving performance of a mobile application

2010-10-11 Thread denis56
Hi, We already do that. Only changed objects are sent over the wire. There is of course question of granularity, but i think we have struck a good balance between complexity and efficiency. Are you also developing for mobile? On 11 Okt., 22:01, Armishev, Sergey sarmis...@idirect.net wrote:

Re: Client side caching of the .nocache,js and other included .js and .css files

2010-10-11 Thread Daniel Kurka
The .nocache.js file is loaded everytime to determine if the GWT Application has changed and if we need to fetch the big cache.html file. If your external javascript files change regularly I would suggest to put them into the HTML site not include them with your app (at least not without

Re: Route animation in google maps with GWT

2010-10-11 Thread Chad
Jan, You can do it all with GWT. You can see a partial example of it here: http://www.dtrac.us/hmr.html I say partial because that page is setup for a race that takes place in the future so there aren't any position reports to show yet. But, even without that, you can see how the time line and

RE: Recommendations for improving performance of a mobile application

2010-10-11 Thread Armishev, Sergey
I am not specifically developing for mobile device (I am doing Network Management) and not consider myself guru in the mobile Web apps. But I did pretty good testing regarding performance of my GWT apps on mobile devices to allow our customers use their smart phones for network management. What

Re: GWT can't compile for simple example

2010-10-11 Thread Sorinel C
Do you use the GWT plugin for Eclipse to create and manage your project (structure) ? 'cause if you do that, then you shouldn't have this problem... Here's the list of the lastest tools from GWT: http://ui-programming.blogspot.com/2010/10/cool-development-tools-from-google.html Cheers, PS: if

Re: some newbie questions

2010-10-11 Thread Ray Tayek
At 02:25 AM 10/11/2010, you wrote: On 9 oct, 04:15, Ray Tayek rta...@ca.rr.com wrote: ... i sometime get a: A widget that has an existing parent widget may not be added to the detach list error ... You cannot have root widgets whose elements are nested (i.e. there's no parent/child

how to get rid of GWT Code Server Disconnected

2010-10-11 Thread Ray Tayek
hi, when things go south, i am getting this get this big grey thing that says: GWT Code Server Disconnected which hides the log stiff and my html stuff. i have poor vision, is there some way to get rid of or move the thing that has the GWT Code Server Disconnected so i can see what's

Re: newbie - GWT.getHostPageBaseURL() + greetingService?input= + string);

2010-10-11 Thread Ray Tayek
At 07:07 AM 10/11/2010, you wrote: Are you still using the provided GreetingServiceImpl on server side that expects a GWT RPC call? yes. that code is the same except for choosing a response to send to the client. Because the way you're setting this up is not sending a GWT RPC request,

Re: how to get rid of GWT Code Server Disconnected (solved)

2010-10-11 Thread Ray Tayek
At 03:09 PM 10/11/2010, you wrote: hi, when things go south, i am getting this get this big grey thing that says: GWT Code Server Disconnected which hides the log stiff and my html stuff. i have poor vision, is there some way to get rid of ... seems like i shoud be able to: In Firebug or

Re: Help with Combobox (extGWT)

2010-10-11 Thread Carl Pritchett
Hi, Two tips: Post GXT questions on the Sencha forums and download the GXT source code and search it. The source is invaluable. The stock class is not part of the extGWT library, but it is in the source code for the examples. For 2.2.0 it is in samples\resources\src

Re: Classloader, Jetty, and OSGI

2010-10-11 Thread Thomas Broyer
On 11 oct, 22:26, Viktoriya Sokolova viktoriya.sokol...@gmail.com wrote: Hi. I get the exception (below) when I try to start up my jetty server over OSGI while my GWT (2.0.3) client is up.  If my GWT client is not up, the server starts up no problem, and I can bring up the client with no

Re: Integration of hibernate with GWT

2010-10-11 Thread SZK
I just want to comment on Gilead run away from it fast as you can why you ask ? because it is super invasive . Use to connect to hibernate just use spring do not need any thing else . However GWTP is a good framework untill such time when GWT's own MVP framework is finalized . Which I hope is

Re: Integration of hibernate with GWT

2010-10-11 Thread Y2i
I can use Eclipse Link in resource-local mode to connect to a data store using JPA in plain Jetty (no application server, just a plain web container). I could probably replace Eclipse Link with Hibernate and it would work, I just haven't tried that yet. But I am not able to configure Jetty to

Re: GWT2.1 - Progress Bar Cell DataProviders

2010-10-11 Thread Nick
bump On Oct 1, 10:34 pm, Nick nix...@gmail.com wrote: I am in the process of creating a Progress Bar Cell  that will work in a GWT2.1 CellTable. So far I have the cell rendering a simple html progress bar in a manner that is consistent with other cell renders. I need to somehow update the

Re: GWT can't compile for simple example

2010-10-11 Thread heros
Thanks for your link (I have clicked some ads for you -;) ) I'm using latest GWT plugin for Eclipse 3.6. You can build the same project? It's strange. I also install GWT Desinger too. Do it effect to the project build process? May I try to reinstall GWT plugin. Hung On Oct 12, 5:09 am, Sorinel

Re: GWT can't compile for simple example

2010-10-11 Thread heros
Thanks for your link (I have clicked some ads for you -;) ) I'm using latest GWT plugin for Eclipse 3.6. You can build the same project? It's strange. I also install GWT Desinger too. Do it effect to the project build process? May I try to reinstall GWT plugin. Hung On Oct 12, 5:09 am, Sorinel

Re: GWT can't compile for simple example

2010-10-11 Thread Frank Argueta
GWT Mods, Will you please BAN this SPAMMER. Every post of this ignoramus has an unrelated link to his ads and trojan infested site. This guy is a real loser that just won't go away. On Mon, Oct 11, 2010 at 6:09 PM, Sorinel C scristescu...@hotmail.comwrote: Do you use the GWT plugin for Eclipse

Re: Hook up HTML with GWT

2010-10-11 Thread Didier DURAND
Hi Il Lupo, I guess that you want to replicate what is usually done in js but you want to do it natively in Java: the way to go is to use com.google.gwt.dom.client.Node (or Element) If you know the html id of your element, then you can get it and start iterating over its children to reach them

Re: linux + development mode

2010-10-11 Thread Didier DURAND
It works here in Ubuntu 32bit 10.04 Do you use 64 bits ? I have read about some issues with 64 bits didier On Oct 9, 2:18 pm, Racka hello.ra...@gmail.com wrote: Hi all, i'm using arch linux and my browser is firefox (and blackbox as window manager, no desktop manager at all). When i try to

Re: how to get rid of GWT Code Server Disconnected (solved)

2010-10-11 Thread Rud
You can also find all the information in the Development view in Eclipse. Rud On Oct 11, 5:20 pm, Ray Tayek rta...@ca.rr.com wrote: At 03:09 PM 10/11/2010, you wrote: hi, when things go south, i am getting this get this big grey thing that says: GWT Code Server Disconnected which hides the

Re: how to get rid of GWT Code Server Disconnected (solved)

2010-10-11 Thread Ray Tayek
At 10:11 PM 10/11/2010, you wrote: You can also find all the information in the Development view in Eclipse. i can see the logs there just fine. On Oct 11, 5:20 pm, Ray Tayek rta...@ca.rr.com wrote: At 03:09 PM 10/11/2010, you wrote: i have poor vision, is there some way to get rid of

[gwt-contrib] [google-web-toolkit] r9012 committed - Add temporary gwt-maven-plugin version 1.3.2.google which fixes AppEng...

2010-10-11 Thread codesite-noreply
Revision: 9012 Author: cromwell...@google.com Date: Sun Oct 10 23:01:02 2010 Log: Add temporary gwt-maven-plugin version 1.3.2.google which fixes AppEngine DevMode issues http://code.google.com/p/google-web-toolkit/source/detail?r=9012 Added:

[gwt-contrib] [google-web-toolkit] r9013 committed - Created wiki page through web user interface.

2010-10-11 Thread codesite-noreply
Revision: 9013 Author: b...@google.com Date: Mon Oct 11 06:27:34 2010 Log: Created wiki page through web user interface. http://code.google.com/p/google-web-toolkit/source/detail?r=9013 Added: /wiki/Editors.wiki === --- /dev/null +++ /wiki/Editors.wiki Mon

[gwt-contrib] Re: Fixing a bug where headers are not redrawn when the data changes. I was trying to be crafty and... (issue971801)

2010-10-11 Thread jlabanca
http://gwt-code-reviews.appspot.com/971801/diff/1/3 File user/test/com/google/gwt/user/cellview/client/CellTableTest.java (left): http://gwt-code-reviews.appspot.com/971801/diff/1/3#oldcode23 user/test/com/google/gwt/user/cellview/client/CellTableTest.java:23: public class CellTableTest extends

[gwt-contrib] Re: Fixing a bug where headers are not redrawn when the data changes. I was trying to be crafty and... (issue971801)

2010-10-11 Thread jlabanca
http://gwt-code-reviews.appspot.com/971801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Add README step to use the Google Web Toolkit SDK in the gwt-user project so that users can run ... (issue966802)

2010-10-11 Thread pdr
http://gwt-code-reviews.appspot.com/966802/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Add Support for server side script selection in linker (issue941802)

2010-10-11 Thread jgw
On 2010/10/07 21:17:49, unnurg wrote: I thought I already saw this go through -- is this still awaiting review? http://gwt-code-reviews.appspot.com/941802/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Working around a bug in the xerces SAX parser used by SafeHtml templates. When using Java 1.5, t... (issue978801)

2010-10-11 Thread jlabanca
Reviewers: rchandia, Description: Working around a bug in the xerces SAX parser used by SafeHtml templates. When using Java 1.5, the parser does not parse the Template used by CellList correctly. Adding a space anywhere fixes the problem. We don't see the problem in any of the other templates.

[gwt-contrib] Re: Ensure that EntityProxy instances returned from Collections returned from an editable EntityProx... (issue976801)

2010-10-11 Thread rjrjr
Looks good, but needs test. On 2010/10/09 15:28:19, bobv wrote: http://gwt-code-reviews.appspot.com/976801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Ensure that EntityProxy instances returned from Collections returned from an editable EntityProx... (issue976801)

2010-10-11 Thread rjrjr
http://gwt-code-reviews.appspot.com/976801/diff/1/3 File user/test/com/google/gwt/requestfactory/client/RequestFactoryTest.java (right): http://gwt-code-reviews.appspot.com/976801/diff/1/3#newcode1766 user/test/com/google/gwt/requestfactory/client/RequestFactoryTest.java:1766: // Check lists of

[gwt-contrib] Re: Ensure that EntityProxy instances returned from Collections returned from an editable EntityProx... (issue976801)

2010-10-11 Thread rjrjr
LGTM Clearly the brain pills have not kicked in, the test is fine. http://gwt-code-reviews.appspot.com/976801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] [google-web-toolkit] r9014 committed - Edited wiki page Editors through web user interface.

2010-10-11 Thread codesite-noreply
Revision: 9014 Author: b...@google.com Date: Mon Oct 11 09:52:54 2010 Log: Edited wiki page Editors through web user interface. http://code.google.com/p/google-web-toolkit/source/detail?r=9014 Modified: /wiki/Editors.wiki === --- /wiki/Editors.wiki Mon Oct

[gwt-contrib] Re: Add Support for server side script selection in linker (issue941802)

2010-10-11 Thread Unnur Gretarsdottir
It's still waiting for review - thanks! On Mon, Oct 11, 2010 at 8:26 AM, j...@google.com wrote: On 2010/10/07 21:17:49, unnurg wrote: I thought I already saw this go through -- is this still awaiting review? http://gwt-code-reviews.appspot.com/941802/show --

[gwt-contrib] Re: Add Support for server side script selection in linker (issue941802)

2010-10-11 Thread unnurg
http://gwt-code-reviews.appspot.com/941802/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

Re: [gwt-contrib] Add Support for server side script selection in linker (issue941802)

2010-10-11 Thread Unnur Gretarsdottir
Hi Arthur - Are you asking if there's an existing linker for the inlining of your selection script? If so, no - the linker has no access to the contents of your initital html page. What you need to do is, rather than serve a static html page, your server will have to dynamically generate it, by

[gwt-contrib] Re: Working around a bug in the xerces SAX parser used by SafeHtml templates. When using Java 1.5, t... (issue978801)

2010-10-11 Thread rchandia
LGTM http://gwt-code-reviews.appspot.com/978801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Working around a bug in the xerces SAX parser used by SafeHtml templates. When using Java 1.5, t... (issue978801)

2010-10-11 Thread rchandia
LGTM http://gwt-code-reviews.appspot.com/978801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

  1   2   >