Including a .jar working in Tomcat but no in builtin Jetty

2012-01-14 Thread Martones
Hi everyone, I'm using Mongodb + GWT RPC. I'm getting a NoClassDefFoundError error when in Hosted jetty server. But when I compile the app and place it on my tomcat server it works (I copy-paste the.war/ content). As advised in the GWT doc I did the folowing config : - I copied the mongo.jar

Re: GWT\GAE With Java Video Course Need Urgently

2012-01-14 Thread mitel
Hi, check these links. There are some good video tutorials out there. http://www.rushstart.net/google-web-toolkit.html On Jan 11, 4:37 pm, Mohamed El Shall mohamed.s.elshall2...@gmail.com wrote: Hi : am Really in a bad need of GWT\GAE with Java Video Course Links So please if any one could

Re: Getting CellBrowser width, (re)position and re-size panel

2012-01-14 Thread Thomas Broyer
CellBrowser is a RequiresResize panel (see http://code.google.com/webtoolkit/doc/latest/DevGuideUiPanels.html ), it doesn't have an intrinsic size and grow with its content; instead it should be given explicit dimensions (possibly automatically by a ProvidesResize parent widget) and it fits

Re: Hyperlink with PlaceHistoryMapper

2012-01-14 Thread Thomas Broyer
If I were you, I'd use the PlaceHistoryMapper to build the token out of the target Place; and I would even use an Anchor with ClickHandler and PlaceController.goTo instead of an Hyperlink. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group.

Re: UI handling doubt in MVP

2012-01-14 Thread Thomas Broyer
On Friday, January 13, 2012 9:05:22 AM UTC+1, Qrunk wrote: Hi , Im a bit confused as in what does UI handling is meant in http://code.google.com/webtoolkit/articles/mvp-architecture.html, which is to be handled by the presenter. First: skip directly to the part 2 article. Say I have

Problem with GWT Window Builder plugin (Eclipse)

2012-01-14 Thread Xybrek
Hi, I have some problem with GWT WindowBuilder that I have published the details through Stackoverflow: http://stackoverflow.com/q/8836214/785349 Cheers. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email

Re: CellTable height shrinks upon paging

2012-01-14 Thread Patrick Tucker
I agree. I think the number of rows should stay the same and when needed, set the left over cells to empty. Unfortunately, they probably had a good reason to remove the rows instead. I'm guessing rendering is faster the way it is now. On Jan 13, 11:06 am, Raziel raziel...@gmail.com wrote: The

How to handel Day Light Saving in GWT2.0

2012-01-14 Thread Deekay
Hi, Can any one have word of wisdom on this. My case is like ..I am saving user DOB in PST format, I need to show the DOB in requested client timezone. Can I converse it in serverside ,does the Http request gives the locale based on the client location or it only it gives default locale as per

Create local application?

2012-01-14 Thread Jan
Hi, is it possible to create a local application which does not need any server or anything, so i have just a simple javascript/html/file combination that i can give to someboy and it works? I tried to compile the gwt sample application and tried to just open the .html file in the war folder,

Create local application?

2012-01-14 Thread Thomas Broyer
Files loaded from the file system are treated as different origins, so communication between the host page and the *.cache.html does work. Try with the xsiframe linker. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this

Re: Including a .jar working in Tomcat but no in builtin Jetty

2012-01-14 Thread Martones
Here's an update : I just tested a random .jar and it works fine. So I guess that there my problem is something more then including correctly the mongo.jar (which I guess is included correcly). Just to be sure here is the signle line of code that throws the error and the error it self : Mongo m

Re: Create local application?

2012-01-14 Thread Alain Ekambi
You could also look into AIR or Titanium for more stand alone functionlities. 2012/1/14 Jan janpu...@googlemail.com Hi, is it possible to create a local application which does not need any server or anything, so i have just a simple javascript/html/file combination that i can give to

Re: Create local application?

2012-01-14 Thread Xybrek
On 1/14/2012 10:52 PM, Jan wrote: Hi, is it possible to create a local application which does not need any server or anything, so i have just a simple javascript/html/file combination that i can give to someboy and it works? I tried to compile the gwt sample application and tried to just open

Re: History onValueChange() not called when application is loaded?

2012-01-14 Thread Xybrek
On 1/13/2012 8:48 PM, hbf wrote: Dear all, I am following the instructions for History management http://code.google.com/webtoolkit/doc/latest/DevGuideCodingBasicsHistory.html but even though I register my history handler in onModuleLoad(), it does not fire when I load my application with a

Re: Create local application?

2012-01-14 Thread Alain Ekambi
I dont see why JQuery should be better then GWT for this case. I ve done some stand alone GWT apps in the past and it works perfect, Like Thomas said try the xframe linker. 2012/1/14 Xybrek xyb...@gmail.com On 1/14/2012 10:52 PM, Jan wrote: Hi, is it possible to create a local application

MVC and Code Splitting

2012-01-14 Thread Xybrek
In my application there are many views and controllers, however not all are needed at once, mostly the view that is loaded depends on the URL fragment(s). In what way or pattern a Controller and View be wrapped in a GWT.runAsync so that only controllers and views needed are loaded? I just

SplitLayoutPanel and deferred resizing

2012-01-14 Thread Mike Dee
I've been trying to figure out how to get resize events when the SplitLayoutPanel's splitter is moved. This question has been asked many times before, such as here:

Re: Including a .jar working in Tomcat but no in builtin Jetty

2012-01-14 Thread Thomas Broyer
On Saturday, January 14, 2012 7:05:12 PM UTC+1, Martones wrote: exception: java.lang.NoClassDefFoundError: java.net.InetSocketAddress is a restricted class. Please see the Google App Engine developer's guide for more details. Disable AppEngine for your project. -- You received this

Re: MVC and Code Splitting

2012-01-14 Thread Thomas Broyer
On Saturday, January 14, 2012 8:12:44 PM UTC+1, Xybrek wrote: In my application there are many views and controllers, however not all are needed at once, mostly the view that is loaded depends on the URL fragment(s). In what way or pattern a Controller and View be wrapped in a

Re: GWT Developer Plugin for Firefox 9

2012-01-14 Thread Jason Sheedy
Thanks Alan. On Dec 22 2011, 7:30 pm, Alan Leung acle...@google.com wrote: I have both 32 and 64 bit linux compiled. http://www.mediafire.com/?5tak1zzo6a3yvn0 Still working on mac and windows. -Alan -- You received this message because you are subscribed to the Google Groups Google Web

Re: Including a .jar working in Tomcat but no in builtin Jetty

2012-01-14 Thread Martones
Hi Thomas, many thanks it works ! Although I got this warning now : Server class 'com.google.gwt.dev.shell.jetty.JDBCUnloader' could not be found in the web app, but was found on the system classpath Which I suppose is not a problem since once my app will be deployed on the server the class

Re: How is Math.Random emulated? and how good is it?

2012-01-14 Thread darkflame
Thanks, I'll try that other one and see if it helps. My Application/Doddle is here: http://www.darkflame.co.uk//Modoodler/Modoodler.html If anyone is interested. Hitting Run Commandsd on the default settings shows the bias. On Jan 11, 3:21 pm, Chi Hoang c...@chi.ca wrote:

Re: TabLayoutPanel inside HeaderPanel - tab body doesn't show

2012-01-14 Thread James Scott
I've applied the patch from the code review referenced in comment 3 on issue 7065, and it didn't fix the bug. I verified that the DeckLayoutPanel.onLoad() method implementation added by the patch gets called, but the tab body is still not rendered when the TabLayoutPanel is contained in a

Re: The RequestFactory ValidationTool must be run for the RequestFactory type

2012-01-14 Thread TULC
I'm still stuck on this. Some projects I've ported to 2.4 now work, but others still just won't budge. I have tried all the additional steps, but my *DeobfuscatorBuilder.java just won't appear in those projects (event thought the .apt_generated folder does, and is replaced if I change the name).

Using Background Images in CSS with sprite

2012-01-14 Thread chstrong
Hi there, I'm a GWT Beginner and started a simple GWT project using the Eclipse GWT Plugin / GWTP setup. My first goal is to create a page with a basic design. I want to include teasertext_bg.png in to the CSS in MainView.ui.xml. But somehow it doesn't work. Can somebody tell me what I'm doing

Re: GWT Developer Plugin for Firefox 9

2012-01-14 Thread Chris Tencati
Download works fine for me, it's just a normal mediafire dl so I'm not sure what problem everyone is having. Maybe turn off various ad/script blockers and try again? Download page after refresh should look something like this: http://dl.dropbox.com/u/28001/gwt-mf.png On Jan 13, 8:51 am, WileE

AssertionError running in dev mode with -noserver in Tomcat

2012-01-14 Thread Cliff D
When I try to start my server I get an assertion error from GWT 2.4.0 (and JDK 6_30): Caused by: java.lang.AssertionError at com.google.gwt.dev.resource.impl.PathPrefixSet.assertValidAbstractResourcePathName(PathPrefixSet.java: 292) at

Problem creating Editor

2012-01-14 Thread jmbz84
Hello, I´m trying to create a simple app using editors and requestfactory, but when I try to declare for the first time the editor (articuloEditor = new ArticuloEditor();) I get the following error: [ERROR] [tecmovin] - Line 48: No source code is available for type

Re: UI handling doubt in MVP

2012-01-14 Thread Qrunk
thanks for the prompt replies . I think I got the perfect answers -- 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/-/OBx_8uKSmc4J. To post to

Re: UI handling doubt in MVP

2012-01-14 Thread Qrunk
Hi, Using the Editor framework though blurs the line between presenter and view Can you please elaborate this and would be very useful if you do that using an example. Thanks -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this