Re: how to load a url in a GWT application

2009-08-01 Thread Saeed Zarinfam
Hi Manuel. I build a GWT application (called app A) and then i compile it and deploy it on the server this application has a URL in server. now in another GWT application i want to load deployed version of app A into a panel (or something). how can i do that ? thanks a million. --~--~-~

Re: Getting a simple GWT project to gwt-compile in maven2

2009-08-01 Thread javier
After comparing your pom.xml with the pom in one of my working projects, I found some differences; the following is what I have that you don't: 1)In the maven-war-plugin section (notice the missing “/” before war): war 2) gwt-maven-plugin section:

problems with "extend-property" when non-host-mode server running

2009-08-01 Thread Michael Shantzis
Greetings, I have a feeling that the problem I'm running into is pretty obvious, but I'm still wondering if anyone is running into a similar issue. I have a GWT app (well, actually it's a SmartGWT app) that I'm connecting with a rails server instead of one that is running in hosted mode. In oth

Re: datepicker year problem

2009-08-01 Thread dogan kaya berktas
This is very nice, but I am a little bit convervative about unofficial extensions for GWT, Thanks for the link though, It seems fine On Aug 1, 6:23 pm, Manuel Carrasco Moñino wrote: > Take a look to gwtchismes's datepicker > > http://code.google.com/p/gwtchismes/ > > Manolo > > On Sat, Aug 1, 2

How does cooiked be transfered?Where is that cookies be hold when being tranfered to client?

2009-08-01 Thread Alex Luya
1,How to write a cookie into a response object? t is easy in JSP-Servelt programming,,but how to do it in RPC-Style programming. 2,Where is cookies be hold when being tranfered to client? In servlet programming,I can write cookies into reponse object,and client will receive it and write to text

Re: how to solve this basic problem in GWT..Pls help

2009-08-01 Thread mdwarne
Hi, Please check your Error message, and look for the java stack trace. With out the stack trace it's hard to locate your error. P.S. in your code: RootPanel.get("slot1").add(quoteText); I don't see any or elements with ID="slot1" I believe the code is trying to find an element with an ID

Re: Modelling framework

2009-08-01 Thread Chad
Kaspar, While you probably can find the kind of tool you are looking for (I don't know of any since I don't have a need for them), I would question your data design. You should be able to design your data so that users can add questions without changing the data structure, just the data content.

Re: Several test suites in a run

2009-08-01 Thread Marcelo Sena
Oh god I can't believe I'm that dumb. The answer was right in front of me the whole time. Sorry for asking. On Aug 1, 4:12 pm, Marcelo Sena wrote: > Hi, > I wished to run several test cases with different modules like this: > > public class StockWatcherTest extends GWTTestCase { >   public Strin

Re: Changing a GWT css default

2009-08-01 Thread Chad
Charlie, Here's what I see in the standard css file from GWT 1.7.0: .gwt-DialogBox .Caption { background: #e3e8f3 url(images/hborder.png) repeat-x 0px -2003px; padding: 4px 4px 4px 8px; cursor: default; border-bottom: 1px solid #bb; border-top: 5px solid #d0e4f6; } .gwt-DialogBox .

Re: Mouse events on single items in a multiple-select ListBox ?

2009-08-01 Thread Marcelo Sena
Wouldn't use the getSelectedIndex with the addChangeHandler to get the selected item at every change in the widget work? On Aug 1, 4:47 pm, Palietta wrote: > Hi, > > I have a multiple-selection ListBox, as created with ListBox(true) . > > I can see it is possible to attach a MouseOverHandler to

Re: ListBox performance problem,with many items

2009-08-01 Thread Chi H
First of all, a listbox with 8000 typically is unlikely to be user friendly, perhaps you should be using a SuggestBox instead? However, if you really do want a listbox, you're on the right track in that using HTML is the only way to get reasonable performance with a large number of elements in IE

Re: Changing a GWT css default

2009-08-01 Thread Charlie
Hey I copied everything which had DialogBox and changed all of them to a custom name but the dialogbox didn't look like it should by default, not sure what I did wrong , what do you mean by primary and dependent style names On Aug 1, 8:13 pm, Chad wrote: > Charlie, > > Look in the GWT SDK in you

Mouse events on single items in a multiple-select ListBox ?

2009-08-01 Thread Palietta
Hi, I have a multiple-selection ListBox, as created with ListBox(true) . I can see it is possible to attach a MouseOverHandler to the ListBox and listen to mouse over events. However, I'd like to do that on the single items, not the whole ListBox. More precisely, everytime the cursor is over a

Re: Custom control

2009-08-01 Thread Marcelo Sena
Maybe you are looking for this: http://code.google.com/webtoolkit/doc/1.6/DevGuideUserInterface.html#DevGuideCreatingCustomWidgets --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to

Re: Server file writing...

2009-08-01 Thread Marcelo Sena
Read this http://code.google.com/webtoolkit/tutorials/1.6/clientserver.html --~--~-~--~~~---~--~~ 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-Toolkit@googlegro

Several test suites in a run

2009-08-01 Thread Marcelo Sena
Hi, I wished to run several test cases with different modules like this: public class StockWatcherTest extends GWTTestCase { public String getModuleName() { return "com.google.gwt.sample.stockwatcher.StockWatcher"; } public void testSimple() { assertTrue(true); } } public class S

Re: Changing from Gwt 1.5.3 to 1.7

2009-08-01 Thread mikedshaffer
And then test, test, fix and retest. On Jul 31, 10:25 pm, jagadesh wrote: > HI Guys , > > We Developed a Application using Gwt 1.5.3 . now our release time is > very close . > Is it possible to change the existing code from 1.5.3 to Gwt 1.7 with > minor changes > > what are the important changes

Re: Automated JUnit Tests for GWT

2009-08-01 Thread Daniel Wellman
Are you using Ant or Maven? The Maven plugin (from Codehaus) has documentation on running tests here: http://mojo.codehaus.org/gwt-maven-plugin/user-guide/testing.html For Ant, you'll run your tests using the standard JUnit task, but make sure to include your test and project source in the class

[OT] Modelling framework

2009-08-01 Thread Kaspar Fischer
Hi everybody, I am looking for a Java library that allows me to define the data model for my GWT application. Among other things, my app allows the user to define different types of questionnaires and for this I need a flexible data model - where the user can add fields (questions, for ins

Re: WYSIWYG/XML for GUI layout in GWT?

2009-08-01 Thread Eric
I have looked at Instantiations and found it to be BUGGY. I cannot put up with a buggy IDE. It's the one thing in my toolset that must be rock solid. GWT needs more options . On Jul 6, 1:03 am, "alex.d" wrote: > Take a look at GWT > Designer:http://www.instantiations.com/windowbuilder/gwtdesign

Re: Changing a GWT css default

2009-08-01 Thread Chad
Charlie, Look in the GWT SDK in your project. Look into com.google.gwt.user.theme.standard (or dark or chrome if you are using those instead). Drill down into the public/gwt/standard folders and you will find the standard.css. You can open it and find the gwt- DialogBox css classes that are used

Re: Displaying a "loading" image while waiting on RPC

2009-08-01 Thread Chad
Nick, Obviously, that works, too. You can also show/hide your image with the RootPanel instead of the DOM class (I don't know which would be better -- someone else may be able to chime in on that) by doing: RootPanel.get("ajaxloader").setVisible(true); // or false as needed I just took a look

Re: How to disable assertions in Hosted Mode?

2009-08-01 Thread mic
I would be very interested in the answer to that as well! On Jul 25, 10:21 pm, David wrote: > I recently jumped from GWT 1.5 to 1.7 and am having trouble with some > legacy code that sets the style attribute "overlow-x" from the DOM > object.  In hosted mode this throws an assertCamelCase() erro

Eexception handling in non-hosted mode?

2009-08-01 Thread mic
How should I do proper exception handling without relying on the hosted mode? I would like to have something like GWT.log in non-hosted mode as well. How would I transport the excpetion information to the server side? --~--~-~--~~~---~--~~ You received this message

Re: how to load a url in a GWT application

2009-08-01 Thread Manuel Carrasco Moñino
Could you explain better what do you want? Manolo On Sat, Aug 1, 2009 at 8:37 AM, Saeed Zarinfam wrote: > > Hi > I build a GWT application that has a URL. I want to load this URL in > the panel in another GWT application. > how can i do that ? > > thanks. > > > --~--~-~--~~

Re: datepicker year problem

2009-08-01 Thread Manuel Carrasco Moñino
Take a look to gwtchismes's datepicker http://code.google.com/p/gwtchismes/ Manolo On Sat, Aug 1, 2009 at 4:13 PM, dk wrote: > > Hello, > > I want to get birthday of users with datepicker but what I see from > the samples is that datepicker has no support for next and previous > year buttons

Re: Google analytics integration

2009-08-01 Thread Ian Bambury
GA tracks pages. Ajax sites have only one page therefore you only get one hit. Changing the bookmark changes your place on a page, therefore it doesn't count as a page-change. Furthermore, the server doesn't get notified of bookmark changes (since there is no page request) and therefore doesn't log

Changing a GWT css default

2009-08-01 Thread Charlie
Hey I want to create a new CSS property style for dialog box but I want to change only certain things and when I try to do it I lose all the properties I'm not defining which were defined in the dialog box defaults. The only two things I want to change is the caption width (gwt- DialogBoxCustom .

datepicker year problem

2009-08-01 Thread dk
Hello, I want to get birthday of users with datepicker but what I see from the samples is that datepicker has no support for next and previous year buttons (which is usually < >). It has only month support (<< >>). Am I missing sth? Thanks --~--~-~--~~~---~--~~

Configuring GWT to run in hosted mode against a non-Java server

2009-08-01 Thread Damon Feldman
What are the configuration parameters or other options I need to understand to run GWT in hosted mode (and use JUnit against my RESTful RPC calls) when the server is something other than Java/Tomcat? Using a standard configuration, GWT seems to want to start up it's internal tomcat instance o

Re: Google analytics integration

2009-08-01 Thread Juraj Vitko
Absolutely. Could you post url to that bug so I can wote for it. Thanks. On Jul 31, 5:08 pm, Donovan Jimenez wrote: > What I'd like to see is analytics support for tracking the "history" > token in page tracks we submit. > > Its annoying to use GWT's history support but then find that Google > A

Re: Database Access Denied: Trying to fetch data from Sybase using GWT plugin in Eclipse

2009-08-01 Thread DuoCentillion
I have some decent Sybase and GWT experience. I built a trading application using both technologies. Are you in Finance by the way? I am guessing you will not be able to use AppEngine so best to disable it. Anyway, it sounds like you are trying to call Sybase from the web client side which you

Re: Getting Started on Tomcat server....kinda

2009-08-01 Thread Chris Bailey
Thanks, I knew that part. I think THAT error was talking about putting "" in my project xml file. BUT now I'm getting another error: Deprecated use of gwt.typeArgs for field attributesAllowed; Please use java.util.ArrayList as the field's type On Aug 1, 1:58 am, Saurabh Naik wrote: > after dow

Re: Help using comet in tomcat

2009-08-01 Thread Nathan Wells
When do you see this problem? when you are in hosted mode or when you deploy to tomcat? what version of tomcat are you using? On Jul 31, 5:51 am, BarefootSanders wrote: > Sorry about the confusion.  Ive been to that page numerous times in my > search to fix my problem. > > My problem specificall

Custom control

2009-08-01 Thread Muhannad Nasser
Does any body know where i can find a tutorial so that i can learn how to build a custom GWT user control such as extend the tree control and add my own fields to it and also add events too it.? thanks Muhannad --~--~-~--~~~---~--~~ You received this messag

1.7 NoSuchMethodError IncompatibleRemoteServiceException

2009-08-01 Thread Andrey
Hello! I have got a really strange issue. When I run my application I get server-side errors like: java.lang.NoSuchMethodError: ru.aml.client.database.Row.set(Ljava/lang/ String;Ljava/lang/String;Ljava/lang/Object;)V ... com.google.gwt.user.client.rpc.IncompatibleRemoteServiceException: This app

Re: Changing from Gwt 1.5.3 to 1.7

2009-08-01 Thread C.H.
try this http://code.google.com/webtoolkit/doc/1.6/ReleaseNotes_1_6.html#Upgrading --~--~-~--~~~---~--~~ 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-Toolkit@g