Re: Dealing with Pop-Up Blocker and Browser Refresh

2009-11-12 Thread Olivier
You could also create an external link using the HTML widget : HTML linkToPdf = new HTML(a href=\prout.pdf\ target=\_blank\PDF/a); davis wrote: Hi, part of the app I built with GWT has links to download PDF from the server. I basically just pull the pdf content from the server and do

Re: Error when running ant hosted on OS X 10.6

2009-11-12 Thread bmalkow
I have the same. I created ticket http://code.google.com/p/google-web-toolkit/issues/detail?id=4220 for it. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to google-web-tool...@googlegroups.com. To

Re: Error when running ant hosted on OS X 10.6

2009-11-12 Thread Jim Douglas
Same crash here trying to start hosted mode inside Eclipse using Mac OS X Leopard after installing that Safari update. I added the first part of my crash report to http://code.google.com/p/google-web-toolkit/issues/detail?id=4220. On Nov 12, 12:43 am, bmalkow bartosz.malkow...@gmail.com wrote:

Re: Compile Error on latest build

2009-11-12 Thread shahid
Thank you john. I updating from svn right now. Will give it a try again soon. On Nov 11, 5:46 pm, John O'Conner jsocon...@gmail.com wrote: I also got this error last night. I peformed the following, which seemed to fix the error: ant clean ant On Nov 11, 6:58 am, shahid

Re: Error when running ant hosted on OS X 10.6

2009-11-12 Thread bmalkow
I have solution for it. UGLY UGLY UGLY solution, but it allows me to work until problem is not fixed: Index: dev/mac/src/com/google/gwt/dev/shell/mac/LowLevelSaf.java === --- dev/mac/src/com/google/gwt/dev/shell/mac/LowLevelSaf.java

Re: Dealing with Pop-Up Blocker and Browser Refresh

2009-11-12 Thread Thomas Broyer
On Nov 12, 9:29 am, Olivier oliv...@digiworks.es wrote: You could also create an external link using the HTML widget : HTML linkToPdf = new HTML(a href=\prout.pdf\ target=\_blank\PDF/a); Er, you meant using the Anchor widget, weren't you? ;-) Anchor linkToPdf = new Anchor(PDF, prout.pdf,

Re: ant giving me strange Unknown argument: -style which is not even there

2009-11-12 Thread shahid
Thanks mate. It has been really frustrating ... I am rebuilding now .. hope it works .. On Nov 11, 7:43 pm, misterln2 mister...@googlemail.com wrote: style parameter is no longer support but the plugin keeps on using it see here for a dirty

Re: ant giving me strange Unknown argument: -style which is not even there

2009-11-12 Thread shahid
hi misterin2, I have tried but (ant) build trunck fails with those versions of DevMode and DevModeBase. Do you which revision you reverted back to ? On Nov 12, 10:43 am, shahid shahidza...@gmail.com wrote: Thanks mate. It has been really frustrating ... I am rebuilding now .. hope it works ..

Re: GWT Hosted Mode crashing after Snow Leopard 10.6.2 Update

2009-11-12 Thread Daniel Kurka
I found a very UGLY solution to my problem (which enables me to continue working). I replaced in LowLevelSaf.java public static native void gcUnprotect(int, int); to public static void gcUnprotect(int, int) {} causing the invalid access This is not a real fix, just a very nasty workaround If

Re: Announcing the Google Plugin for Eclipse 1.1.0

2009-11-12 Thread shahid
hi, I have also got the same problem as misterln2. Using the latest gwt trunk i get this error when trying to launch devmode with the google plugin: Unknown argument:-style I have tried reverting the 2 files to previous versions but it results in GWT build failure shahid On Nov 11, 10:18 am,

Re: GWT + Palm WebOS

2009-11-12 Thread Olivier Gérardin
Ah it's a podcast! I was looking for a transcript... Thanks, I'll listen later. On Nov 11, 1:46 pm, kilkenny a.bue...@gmail.com wrote: Hi Olivier The link points to the show notes. You have to donwload the mp3 file. It's kind a hidden behind the 'POD' icon on the top left. Here is the

Issue when using DeferredCommand.addPause

2009-11-12 Thread Damien Picard
Hi, I'm trying to understand the DeferredCommand.addPause function (with gwt-2-ms1). I wrote this sample : Button bouton = new Button(attente); bouton.addClickHandler(new ClickHandler(){ @Override public void onClick(ClickEvent event) {

Re: UnmodifiableList Serialization

2009-11-12 Thread Dominik Steiner
Hi Frederico, how about before sending back the list creating an ArrayList and iterating through the list you want to return in order to then fill that ArrayList and return that? HTH Dominik On Nov 11, 1:03 pm, fedy2 defav...@gmail.com wrote: Hi, I'm using GWT 1.5.3 and I'm trying to send a

Re: UnmodifiableList Serialization

2009-11-12 Thread fedy2
As a tmp solution I just create a new LinkedList passing as argument the Unmodifiable one, but I think this is not a clear solution. Anyway thanks for the suggestion. Federico On Nov 12, 2:57 pm, Dominik Steiner dominik.j.stei...@googlemail.com wrote: Hi Frederico, how about before

Re: Announcing GWT 2.0 Milestone 2

2009-11-12 Thread vinays
Why the download is marked as deprecated! On Oct 22, 10:43 pm, John LaBanca jlaba...@google.com wrote: Hi everyone, We are excited to release the second milestone build for GWT 2.0 today. This milestone is essentially feature complete, and provides somewhat more stability in the various bits

gwt.i18n.client.Messages

2009-11-12 Thread jianjun
I'm using the Messages. What's the rule(s) to modify an existed Message? Will the translator pick it up? thanks, -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to google-web-tool...@googlegroups.com. To

Re: Difficulties deploying Gwt to Tomcat

2009-11-12 Thread Ahmed Sief
From: Christian Goudreau goudreau.christ...@gmail.com To: google-web-toolkit@googlegroups.com Sent: Tue, November 10, 2009 8:45:22 PM Subject: Re: Difficulties deploying Gwt to Tomcat Problem resolved, I needed log4j lib into the main lib folder. All thanks

can't inherit gwt maps module

2009-11-12 Thread Brady
I've been trying to build a simple GWT app using GWT-maps.jar, like the one at: http://gwttutorials.com/2009/07/28/setting-up-google-maps-with-gwt/ Despite following the instructions, I still get error messages like this one: No source code is available for type

GWT textarea widget - disable word wrap

2009-11-12 Thread dsinnett
Hello, I am wondering if there is a way to disable word wrap in the textarea GWT widget. What I am doing is generating a large text output that will be displayed in the text area. it is critical that each line stays on its own line and not word wrapped. What i am hoping for is a way that I can

Force image caching in gallery

2009-11-12 Thread dicko
Hi there I've setup a basic GWT app that's essentially an image gallery. The gallery works by updating an Image widget with widget.setURL('url') either by clicking a forward or back button. To reduce bandwidth, the images are only loaded as they're requested (ie. by clicking the forward

History back in chrome and safari

2009-11-12 Thread Amir
Hi, I am developing a GWT application. Inside my main GWT window I have an iFrame which loads a non gwt url. The user can click on links inside the iFrame window to navigate to other pages. Now I want to provide back/forward functionality to move back and forward between the pages loaded in the

Redistributing GWT apps in a commercial software

2009-11-12 Thread Parag Thakur
hello, We are using GWT to create a web interface that will be shipped to end customers with our product. The license agreement has a section that lists 3rd party components included with GWT. However it's not clear which of these will actually make it into our product as a part of the GWT app.

simple question (offtopic?)

2009-11-12 Thread K.
Hi there. I'm interested in being able to implement this scenario: Being able to save straight to server an image from clipboard. This is to ease the transfer of images from word documents/emails into our wiki-fied knowledgebase. I would love if people could click a link in the wiki to upload

Re: Problem with Eclipse and GWT

2009-11-12 Thread cmadsen_dk
I see this problem to under fedora 11 when trying to run the Mail sample uname -a Linux localhost.localdomain 2.6.30.9-96.fc11.i686.PAE #1 SMP Tue Nov 3 23:41:33 EST 2009 i686 i686 i386 GNU/Linux [...@localhost Mail]$ xulrunner -v Mozilla XULRunner 1.9.1.5 - 20091105041559 [...@localhost Mail]$

Re: can't inherit gwt maps module

2009-11-12 Thread Eric Ayers
Official getting started page: http://code.google.com/docreader/#p=gwt-google-apiss=gwt-google-apist=MapsGettingStarted If you are not using the Google Plugin for eclipse, you may have to carefully setup your run configuration. On Tue, Nov 10, 2009 at 4:05 PM, Brady aguth...@gmail.com wrote:

Deploying GWT on shared tomcat hosting...

2009-11-12 Thread Haitham
I know this is a common question, and that's why this is so frustrating... I have something that works great in non-hosted and hosted mode on netbeans idea using glassfish 2.0 server. When i take it online i get the dreaded 404 error from the mismatch (apparent mismatch?) between the servlet

SplitPanel resize events

2009-11-12 Thread rolf
I'm using a HorizontalSplitPanel and need to determine when the divider is moved (I'm displaying an image in a custom widget inside it and need to resize it while preserving its aspect ratio). I've wasted a lot of time trying to solve this problem and found dozens and dozens of posts from other

Conflicts on Install GWT on Ganymede (3.5.1)

2009-11-12 Thread tobias
Cannot complete the install because of a conflicting dependency. Software being installed: Google App Engine Java SDK 1.2.6 1.2.6.v200910131704 (com.google.appengine.eclipse.sdkbundle.e35.feature.feature.group 1.2.6.v200910131704) Only one of the following can be installed at once:

Re: GWT + Palm WebOS

2009-11-12 Thread Pavel Lahoda
I think PhoneGap (www.phonegap.com) had support for WebOS, although I can't find it on their web page right now. But there are several similar libraries how to bridge from JavaScript to get access to the phone native functions, it shouldn't be too difficult to get this. But in long run, it is

Icon i header of DisclosurePanel

2009-11-12 Thread Fedearne
I would like to place an icon in the top right corner of a disclosurepanel. I have tried a widget, in the content part of the panel, with relative position an top=-30. That gives me an icon in the right spot, but empty space where the panel reserves space for the icon. Does anybody know how to

Error Running GWT in x86_64 Linux

2009-11-12 Thread Jeff Levesque
Hi All, I just started using GWT and I'm having some problems getting my GWT project in Eclipse to run. I started by creating a new Web Application Project, clicked the project and tried to run it but I'm getting this error when it runs: The browser widget class could not be instantiated.

JUnit + Web mode + Stack trace

2009-11-12 Thread chris_l
Hi, I just ran a JUnit test for the first time in Web mode - and wondered about the short stack trace. Ok, it's obvious that the project gets compiled to JavaScript (as that's the point of web mode). But I had hoped, that the test class itself would still execute as a Java class. Would that be

Saving data from client

2009-11-12 Thread Darius Blythe
Hi, In my app, clients can create elements. So a client creates a few elements, and then presses the save button. In the database, I have element.id, element.name etc. Now, as the save button is pressed I figure I'll make an RPC call passing the elements on the wire and insert the elements into

Re: GWT: JUnit Google App Engine Tutorial assumes intelligence

2009-11-12 Thread chris_l
Hi, On Nov 11, 10:29 pm, Angel Marquez angel.marq...@gmail.com wrote: I am running into difficulties getting through the last 2 sections of the GWT Getting Started Tutorial: 1. When I check the available plugins for my fresh eclipse galileo install it looks like JUnit is already installed. I

Deferred binding cannot find nested classes

2009-11-12 Thread fawzyj
Hi all i have noticed this behaviour while developing a deferred binding generator i think it is a bug so i filed a new issue for it : issue 4219 http://code.google.com/p/google-web-toolkit/issues/detail?id=4219 its details is as follow: Found in GWT Release (2.0M2): this is the version i work

Javascript function history.back(); is not working properly on google crome browser?

2009-11-12 Thread Sagar
In my project which is in gwt, history.back() not working properly in google chrome , on other browsers like IE, Firefox and Safari 4 it working properly. In other browser when i logged in to application , then if i press back button , it call onHistoryChange event with empty token. ( i think

Starting a new thread result in AccessControlException

2009-11-12 Thread y
When I try to start a new thread in a servlet, I get: java.security.AccessControlException: access denied (java.lang.RuntimePermission modifyThreadGroup) Any idea why is that and how can I fix it? Thanks -- You received this message because you are subscribed to the Google Groups Google Web

Re: GWT Hosted Mode crashing after Snow Leopard 10.6.2 Update

2009-11-12 Thread Glimpse
Thank you for the JAR! But on my system, it doesn't work: Hosted mode started to display my application, but crashed one second later. Any idea? On 12 nov, 12:35, Daniel Kurka kurka.dan...@googlemail.com wrote: I found a very UGLY solution to my problem (which enables me to continue working).

Urgent - Why and how I can use mvp4g with GWT?

2009-11-12 Thread Vicky
Hi, Can anyone explain me about mvp4g architecture with scenario based examples and limitations of GWT app without mvp4g?Also can I get step by step procedure for developing a very simple GWT app like login app or hello world like using mvp4g and without mvp4g for my learning and comparison.If

Re: GWT 2 mailstone 2+selenium+testng+firefox 3.5,keep asking to install plugin

2009-11-12 Thread Cliff Zhao
Selenium has its customized profile for firefox and IE, I think that you need to let Selenium start your firefox profile that have the plugin installed. On Thu, Nov 12, 2009 at 2:57 AM, Alex Luya alexander.l...@gmail.com wrote: (All uitilities are latest version ) I use following code to test

GWT eclipse plugin and moving war folder

2009-11-12 Thread Norman Maurer
Hi all, I'm using maven2 to build a multi-module GWT project. I have an extra module which contains the client code. So I moved the war folder into this module. compiling via mAven2 works fine, the only problem seems to be the hosted mode. It seems like the hosted mode needs to find the war folder

Re: GWT Hosted Mode crashing after Snow Leopard 10.6.2 Update

2009-11-12 Thread Daniel Kurka
Glimpse: please check if you have your old version of gwt-dev is not in the classpath anymore :9 maybe thats the problem... -- 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: GWT eclipse plugin and moving war folder

2009-11-12 Thread olivier nouguier
Hi norman, Did you try the other solution which is to change the mavens outputs ? - outputDirectory to war/WEB-INF/classes (build section) - warSourceDirectory to war (maven-war-plugin) On Thu, Nov 12, 2009 at 3:51 PM, Norman Maurer nor...@apache.org wrote: Hi all, I'm using maven2

Re: Unknown argument: -style

2009-11-12 Thread Rajeev Dayal
Unfortunately, there was a breaking change between the trunk and the current version of the Google Plugin for Eclipse. We'll be releasing an updated version soon, but in the meantime, if you want to use trunk, you'll have to create a Java launch configuration for your application. On Thu, Nov 12,

Re: Conflicts on Install GWT on Ganymede (3.5.1)

2009-11-12 Thread Rajeev Dayal
Which install of Eclipse are you using? What other plugins do you have installed? On Wed, Nov 11, 2009 at 9:59 AM, tobias tobias.girsch...@gmail.com wrote: Cannot complete the install because of a conflicting dependency. Software being installed: Google App Engine Java SDK 1.2.6

Re: GWT eclipse plugin and moving war folder

2009-11-12 Thread Rajeev Dayal
Unfortunately, there is no way to tell the plugin to use a different location for the war directory. We have a feature request open for this functionality. On Thu, Nov 12, 2009 at 9:56 AM, olivier nouguier olivier.nougu...@gmail.com wrote: Hi norman, Did you try the other solution which is

Re: Announcing GWT 2.0 Milestone 2

2009-11-12 Thread Chris Ramsdale
Since the build is a milestone it is marked as deprecated to keep it out of the list of releases. On Sun, Nov 8, 2009 at 1:12 AM, vinays vinay.sek...@gmail.com wrote: Why the download is marked as deprecated! On Oct 22, 10:43 pm, John LaBanca jlaba...@google.com wrote: Hi everyone, We

Re: GWT eclipse plugin and moving war folder

2009-11-12 Thread Norman Maurer
Hi Oliver, like I said maven stuff works.. Its just the gwt-eclipse plugin. Bye, Norman 2009/11/12 olivier nouguier olivier.nougu...@gmail.com: Hi norman,  Did you try the other solution which is to change the mavens outputs ? outputDirectory to war/WEB-INF/classes (build section)

Re: GWT eclipse plugin and moving war folder

2009-11-12 Thread Norman Maurer
Do you have the issue id handy ? Just so I can look at it ;) Bye, Norman 2009/11/12 Rajeev Dayal rda...@google.com: Unfortunately, there is no way to tell the plugin to use a different location for the war directory. We have a feature request open for this functionality. On Thu, Nov 12,

Re: Problem with Eclipse and GWT

2009-11-12 Thread Jeff Chimene
On Wed, Nov 11, 2009 at 8:11 PM, Marco Massenzio m.massen...@googlemail.com wrote: actually the error tells all you need to know :) undefined symbol: PR_GetPhysicalMemorySize clearly the upgrade to 9.10 has replaced the /usr/lib/ xulrunner-1.9.1.4/libxul.so library, and the new one does

Re: OOPHM plugin for firefox problem.

2009-11-12 Thread Rajeev Dayal
Hm, it does seem that the plugin is throwing an exception here: Error Sat Oct 17 13:45:41 WST 2009 Unexpected Exception org.eclipse.core.internal.resources.ResourceException: Problems encountered while deleting resources. at org.eclipse.core.internal.resources.Resource.delete(Resource.java: 724)

Re: Crashed when ant hosted and ant build

2009-11-12 Thread Rajeev Dayal
GWT's compiler does not need Mozilla, but GWT's hosted mode (in pre-2.0 releases) does. Mozilla is the backing browser for GWT's Hosted Browser. On Tue, Nov 10, 2009 at 10:52 AM, bodrin bod...@gmail.com wrote: Hi, thanks for the reply! I'm not sure I have understand you correctly.. Why

Re: OOPHM plugin for firefox problem.

2009-11-12 Thread Jeff Chimene
On Thu, Nov 12, 2009 at 9:06 AM, Rajeev Dayal rda...@google.com wrote: Hm, it does seem that the plugin is throwing an exception here: FWIW, I have seen FF 3.5 crash after some time. I don't know how to reproduce the problem. The crash reporter is enabled. If there's some info I can glean from

Re: Redistributing GWT apps in a commercial software

2009-11-12 Thread Yozons Support on Gmail
I'm not an expert (or even a lawyer ;), but most of the third-party stuff appears to be related to gwt-dev.jar. Heck, I don't even know what that JAR is since it's not in my WEB-INF/lib. I only have gwt-servlet.jar and that has no third-party stuff so it's just under the Apache 2 license you

UI Layout and Alignments

2009-11-12 Thread Sudeep S
Hi I am new to gwt. Can someone tell me wht are the best practices in UI Design and alignments. I am using a Flex Table and FlexCell formatter for almost everything. Are there better ways to ahieve it. Thanks Sudeep -- You received this message because you are subscribed to the Google Groups

RE: UI Layout and Alignments

2009-11-12 Thread Hayes, Kyle
I recommend you take a look at HorizontalPanel and VerticalPanel as well for many of the layouts. GWT UI layout stuff is a lot like Java Swing. FlexTable creates tables and having too many tables on a page can be very heavy for the client. -K From:

Re: JSON - When to use JSONParser and when JavaScript object

2009-11-12 Thread Thomas Broyer
On 12 nov, 17:48, Raziel raziel...@gmail.com wrote: I know this depends on the details of what you're trying to achieve and the JSON object to be parsed (for example if it's dynamic orstatic, etc). I'm just wondering what are the principles that others follow to determine when to use one or

Re: incubator's PagingScrollTable(pagination+Sorting)

2009-11-12 Thread Open eSignForms
What are people's impressions of these widgets in production use? It seems I've read a lot of negative stuff about PagingScrollTable, and it's clear that sorting does not work, which is funny when you run their demo since it touts sorting, yet not a single column sorts correctly. I've not had a

General question about project architecture.

2009-11-12 Thread David C. Hicks
Specifically, I'm curious about the use of GWT Modules in a project. Each time we have a new screen to create, we have been adding a new module to our project. Of course, with each new module, there is an additional build cycle to generate the Javascript for that module. What I'm wondering is

Re: Which is the best way to manage many rows in a table with pagination?

2009-11-12 Thread Open eSignForms
We'd love to see some useful examples since it does seem like a huge and confusing set of APIs and objects just to put data into a table. But it sounds like you had some success, so if you get to that blog, blog away on PagingScrollTable and help us mere non-GUI mortals make use of it smile.

Intercepting clicks and keystrokes on the whole page

2009-11-12 Thread Supercobra Thatbytes
Hello, We released a typing race application (GWT + GAE): http://app.typrx.com. In order to try to prevent cheating with copy / paste type of approach, we'd like to intercept when a user is clicking on a page and display a 'no no' alert. Any advise would be appreciated. Daniel -- You

Re: Issue when using DeferredCommand.addPause

2009-11-12 Thread Thomas Broyer
On 12 nov, 14:52, Damien Picard picard.dam...@gmail.com wrote: Hi, I'm trying to understand the DeferredCommand.addPause function (with gwt-2-ms1). I wrote this sample :         Button bouton = new Button(attente);         bouton.addClickHandler(new ClickHandler(){             @Override

com.google.gwt.junit.JUnitFatalLaunchException...why?

2009-11-12 Thread Grary
Hi, Scanning Google groups and other web hits leads me no closer to resolution of why I keep getting com.google.gwt.junit.JUnitFatalLaunchException when I attempt to launch newly-created tests in Eclipse. This is especially vexing because I have successfully used the junitCreator utility in

Re: Which is the best way to manage many rows in a table with pagination?

2009-11-12 Thread Davis Ford
I'm putting it on my list of things to do. I'll create a sample maven/GWT project that can load tons of data in PagingScrollTable with sorting and pagination by Monday. Hope that helps. I'll post back here when it is done. BTW: I can't rave enough about the performance of this thing. Goofy API

Re: incubator's PagingScrollTable(pagination+Sorting)

2009-11-12 Thread Davis Ford
I'm going to production with PagingScrollTable from incubator. I wrote some unit tests around it and have had no issues with it, but more importantly, I've had this app running live for several months in a dev/test environment, and it has worked flawlessly across browsers (IE 6, 7, 8, Firefox

Re: GWT Hosted Mode crashing after Snow Leopard 10.6.2 Update

2009-11-12 Thread JeanV
I can confirm that I have the same problem since upgrading to Safari 4.0.4. Help is needed on this one On Nov 12, 10:10 am, Daniel kurka.dan...@googlemail.com wrote: After I installed the OSX update 10.6.2 I can start the hosted mode anymore. I get a Invalid memory access: Im suspecting

Interface HasCaption

2009-11-12 Thread luciocamilo
Why the Interface HasCaption isn't implemented by any class, if it provides the methods like getCaption and setCaption used for example by DialogBox? This class shouldnt implements the hascaption??? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit

Flex Table - Remove rows

2009-11-12 Thread Jonas
Hello all, i'm trying to remove the rows from a dynamic flex table, but without success. This is my code, i have 5 columns and a variable number of rows. The idea is to remove all the rows and put new rows in it. Here is what i'm doing for (int i = 0; i __this.getRowCount(); i++) {

Re: incubator's PagingScrollTable(pagination+Sorting)

2009-11-12 Thread Yozons Support on Gmail
Thanks. I'll spend more time to investigate this option, then, since it likely has improved since a lot of the earlier gripes. More examples and better documentation are always the answer, but I know how hard it is to have it all :) -- You received this message because you are subscribed to

Re: Using MVP

2009-11-12 Thread Brian
One solution would be to have two different methods on the interface such as: HasValueString getUsernameField(); HasBlurHandlers getUsernameInput(); I'm not sure I like those names, but the point is that getting the value and adding a blur handler can be different concerns from the point of view

Re: GWT 2 mailstone 2+selenium+testng+firefox 3.5,keep asking to install plugin

2009-11-12 Thread Alex Luya
Yeah,thank you Cliff,I figured it out --- cmdjava -jar selenium-server.jar -firefoxProfileTemplate C: \Documents and Settings\your account name\Application Data\Mozilla \Firefox\Profiles\xxx.default Above command line will

Re: GWT Hosted Mode crashing after Snow Leopard 10.6.2 Update

2009-11-12 Thread Casey
Same here. Everything was fine until I installed the new Safari On Nov 12, 8:27 pm, JeanV jve...@gmail.com wrote: I can confirm that I have the same problem since upgrading to Safari 4.0.4. Help is needed on this one On Nov 12, 10:10 am, Daniel kurka.dan...@googlemail.com wrote:

Using GWT on a server controlled by a content management system

2009-11-12 Thread JavaMan
Hey everyone, I am the webmaster of a website that uses the content management system: Simple Updates. The security rules of the website are rather stringent. I cannot upload folder structures to the site, only files. I figured out how to get my GWT application to run all from a single folder on

How do I display a TreeItem in a Tree with all its children being displayed?

2009-11-12 Thread Saj
Hi All, I have one Tree with a TreeItem root. root has several child items. The default is the children of root not being displayed. In other words root is closed. How do I display root being open with its children being displayed. I thought that if I add the line root.setState(true); that

Re: Which is the best way to manage many rows in a table with pagination?

2009-11-12 Thread Yozons Support on Gmail
That would be awesome. I'll keep my eyes out for your posting. I would love to use it, but there is a huge learning curve already with GWT (I am not even a GUI programmer other than good old HTML+CSS generated by JSPs) and there's nothing like an example that makes use of the various classes to

Re: OOPHM plugin for firefox problem.

2009-11-12 Thread zuber2 ahmad
xxx On Thu, Nov 12, 2009 at 8:06 PM, Rajeev Dayal rda...@google.com wrote: Hm, it does seem that the plugin is throwing an exception here: Error Sat Oct 17 13:45:41 WST 2009 Unexpected Exception org.eclipse.core.internal.resources.ResourceException: Problems encountered while deleting

Re: GWT Hosted Mode crashing after Snow Leopard 10.6.2 Update

2009-11-12 Thread Xavi Mensa
Thanks for the JAR Daniel, it works here. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to google-web-tool...@googlegroups.com. To unsubscribe from this group, send email to

Re: can't inherit gwt maps module

2009-11-12 Thread Brady
I am using the google plugin for eclipse. The getting started page that you referenced, itself references the GWT startup instructions for GWT 1.5. The projectCreator and applicationCreator utilities seem to be no longer a part of the newer versions. What steps should replace the ones that

Problem in AsyncCallback call, returned with success

2009-11-12 Thread Ricardo Cardoso / Gmr
Hello, I'm getting a very strange situation. I get the following error in log, when I do an AsyncCallback call: Uncaught JavaScript exception [_1 has no properties] in http://localhost:/servoeasy/sc/modules/ISC_Core.js, line 773 But the call is returned with success (I get the user data

Re: can't inherit gwt maps module

2009-11-12 Thread Brady
I am using the google plugin for eclipse. The getting started page that you referenced, itself references the GWT startup instructions for GWT 1.5. The projectCreator and applicationCreator utilities seem to be no longer a part of the newer versions. What steps should replace the ones that

Re: GWT Hosted Mode crashing after Snow Leopard 10.6.2 Update

2009-11-12 Thread hugues
On 12 nov, 13:35, Daniel Kurka kurka.dan...@googlemail.com wrote: I found a very UGLY solution to my problem (which enables me to continue working). I replaced in LowLevelSaf.java public static native void gcUnprotect(int, int); to public static void gcUnprotect(int, int) {} I've built a

how large of your GWT compiled code? My one is 850K

2009-11-12 Thread Edgenius
I am very excited for code split feature on Gwt 2.0 as the HTML code size after compiled already bloats to 850k. I give a quick try but it looks not work like a breeze. I know I have to do more research. I don't use lots of third party libraries, actually, only 2 libraries: GWT-DND, GWT-LOG. My

Local call to a service instead RPC

2009-11-12 Thread Badawi
Hi, Every call to a Service is a Remote Call? My all application is running in the same JVM, why I have to force all calls to and Remote Service and the serialize/deserialize the object? Is there a way to create a Asyncronous call to a Local Service? Because if I dont need to serialize the

Any latest document for soyc and code splitting

2009-11-12 Thread Edgenius
I try 2.0m2 soyc and code splitting. It looks soyc doesn't need 2 steps. After add -soyc option in GWT compiler, it outputs HTML format files. Is it true? But after I add GWT.runSync(), the soyc doesn't make any change. My code size grows a little bit rather than reducing. Do I need add some

Re: Error Running GWT in x86_64 Linux

2009-11-12 Thread Rajeev Dayal
Unfortunately, the embedded version of Mozilla that GWT uses is a bit fragile when it comes to different Linux distros. I'd recommend that you give GWT Trunk or GWT 2.0 a try, as it does not use embedded Mozilla. On Wed, Nov 11, 2009 at 1:38 PM, Jeff Levesque jeffreysleves...@gmail.comwrote: Hi

Re: GWT eclipse plugin and moving war folder

2009-11-12 Thread Rajeev Dayal
http://code.google.com/p/googleappengine/issues/detail?id=1515 On Thu, Nov 12, 2009 at 11:17 AM, Norman Maurer norman.mau...@googlemail.com wrote: Do you have the issue id handy ? Just so I can look at it ;) Bye, Norman 2009/11/12 Rajeev Dayal rda...@google.com: Unfortunately, there is

Re: GWT eclipse plugin and moving war folder

2009-11-12 Thread Rajeev Dayal
Also this one: http://code.google.com/p/google-web-toolkit/issues/detail?id=3583 On Fri, Nov 13, 2009 at 12:24 AM, Rajeev Dayal rda...@google.com wrote: http://code.google.com/p/googleappengine/issues/detail?id=1515 On Thu, Nov 12, 2009 at 11:17 AM, Norman Maurer

Re: Announcing the Google Plugin for Eclipse 1.1.0

2009-11-12 Thread Rajeev Dayal
Can you verify that your project is actually using the SDK that you built? Go to Project Properties-Google-Web Toolkit and verify that the selected SDK is the one that you just built. On Thu, Nov 12, 2009 at 11:29 AM, shahid shahidza...@gmail.com wrote: @Ranjeev. Yes I performed a rebuild of

Re: GWT: JUnit Google App Engine Tutorial assumes intelligence

2009-11-12 Thread Rajeev Dayal
Can you post the contents of your appengine-web.xml file? On Thu, Nov 12, 2009 at 1:26 PM, Angel Marquez angel.marq...@gmail.comwrote: Ah, fantastic. I will tackle this today and let you know if my monitors explode. I think that was the last one on my list to figure out. The app engine

Re: GWT: JUnit Google App Engine Tutorial assumes intelligence

2009-11-12 Thread Rajeev Dayal
Your closing tab is misspelled. It should be /appengine-web-app. On Fri, Nov 13, 2009 at 12:37 AM, Angel Marquez angel.marq...@gmail.comwrote: ?xml version=1.0 encoding=utf-8? appengine-web-app xmlns=http://appengine.google.com/ns/1.0; application1683cairo/application version1/version

Re: GWT: JUnit Google App Engine Tutorial assumes intelligence

2009-11-12 Thread Angel Marquez
Awesome. Appreciate the help. On Thu, Nov 12, 2009 at 9:41 PM, Rajeev Dayal rda...@google.com wrote: Your closing tab is misspelled. It should be /appengine-web-app. On Fri, Nov 13, 2009 at 12:37 AM, Angel Marquez angel.marq...@gmail.comwrote: ?xml version=1.0 encoding=utf-8?

Re: OOPHM plugin for firefox problem.

2009-11-12 Thread Rajeev Dayal
I think we're talking about different plugins here :). I was referring to the Google Plugin for Eclipse. But, if you do see any crash logs resulting from the GWT Developer Plugin on FireFox 3.5, please do create a new thread and post the information. On Thu, Nov 12, 2009 at 11:20 AM, Jeff Chimene

Re: GWT: JUnit Google App Engine Tutorial assumes intelligence

2009-11-12 Thread Angel Marquez
?xml version=1.0 encoding=utf-8? appengine-web-app xmlns=http://appengine.google.com/ns/1.0; application1683cairo/application version1/version /appengin-web-app I wanted to include, I'm not complaining. The tutorials are beautifully written like chris pointed out. I'm stoked and like the google

GWT: Feature request Photoshop plugin.

2009-11-12 Thread Angel Marquez
I would love to be able to either: 1. Create the project architecture via GWT/eclipse and when done click a button that generates a PSD template that is analogous to the css and widget classes used. Maybe have the Photoshop Group Directory be the page name and location (home-header) and the layer

Re: Issue when using DeferredCommand.addPause

2009-11-12 Thread Damien Picard
Thank you, I understand now. I was thinking that the IncrementalCommand was the best way to allow handling click, etc... during a long processing. 2009/11/13 Thomas Broyer t.bro...@gmail.com On 12 nov, 14:52, Damien Picard picard.dam...@gmail.com wrote: Hi, I'm trying to understand the

Does code split real shrink the inital download?

2009-11-12 Thread Edgenius
Finally, I chop one class from my bloat code by code splitting function. The class is a dialog box, about 100 lines code. Unfortunately, the result looks funny: Before splitting: Full code size: 868323 After splittting: Initial download size: 871391 Full code size: 874615 It looks

Re: How do I display a TreeItem in a Tree with all its children being displayed?

2009-11-12 Thread Saj
Okay, I got it: root.setState(true, true); On Nov 12, 7:13 pm, Saj sajeevba...@gmail.com wrote: Hi All, I have one Tree with a TreeItem root.  root has several child items.  The default is the children of root not being displayed.  In other words root is closed. How do I display root

[gwt-contrib] FixCompoundAssignmentNarrowing

2009-11-12 Thread cromwellian
Reviewers: Lex, Description: Operations like i += d where i is an int and d is a double are not properly truncated (narrowed) to the LHS type. This patch forces i += d to be written as i = i + d, and applies a narrowing cast as needed, e.g. i = (int)(i + d); Please review this at

[gwt-contrib] Fix handling of local classes

2009-11-12 Thread jat
Reviewers: Dan Rice, Description: This patch fixes a few problems when dealing with local classes (those defined inside a method): - local classes inside a static method do not have a synthetic constructor arg passing the containing instance, as there isn't one -

[gwt-contrib] [google-web-toolkit] r6869 committed - Fix line endings and MIME types....

2009-11-12 Thread codesite-noreply
Revision: 6869 Author: j...@google.com Date: Thu Nov 12 05:54:31 2009 Log: Fix line endings and MIME types. Patch by: jat Review by: scottb (TBR) http://code.google.com/p/google-web-toolkit/source/detail?r=6869 Deleted: /releases/2.0/dev/core/src/com/google/gwt/dev/javac/impl Modified:

  1   2   >