Re: unexpected behavior of FlowPanel's insert method

2009-02-05 Thread Giles Baxter
I realized I didn't need the two elements that came after the content. So I tried add instead of insert as you suggested, but I still get the same behavior. On Wed, Feb 4, 2009 at 11:49 PM, Giles Baxter giles.bax...@gmail.comwrote: Seems to be consistent. Here are the screenshots - don't

Re: JVM crash in hosted mode

2009-02-05 Thread Florian
What OS do you use for development vitaka? I use a Red Hat based distribution called Scientific Linux. On Feb 4, 9:46 am, vitaka vit...@gmail.com wrote: I have exactly the same problem. I am developing a web application that allows users log in with OpenID, and when user is redirected to his

Re: unexpected behavior of FlowPanel's insert method

2009-02-05 Thread Damien Picard
And if you only try to remove the currScreen ; is it removed ? 2009/2/5 Giles Baxter giles.bax...@gmail.com I realized I didn't need the two elements that came after the content. So I tried add instead of insert as you suggested, but I still get the same behavior. On Wed, Feb 4, 2009 at

Re: Error HTTP 503 in Tomcat

2009-02-05 Thread Lothar Kimmeringer
jamer schrieb: It is the web.xml file web-app Does it start that way? If yes, the xml- and doctype-declaration misses and you should add ?xml version=1.0 encoding=UTF-8? !DOCTYPE web-app PUBLIC -//Sun Microsystems, Inc.//DTD Web Application 2.3//EN

Re: A possible critical bug for gwt-fabridge.

2009-02-05 Thread Swathi Kondepati
Hi.. Iam new to FABridge.Now iam working on that,when i tried to use FABridge iam getting the exception as: [ERROR] Uncaught exception escaped java.lang.NullPointerException: null at com.example.client.SWFTest$2.onClick(SWFTest.java:75) at

What does this$static stand for in generated Javascript?

2009-02-05 Thread Ajay Garg
Hi all. I was going through a Java-to-Javascript compiled code with -DETAILED flag, and saw this$static being used at a lot of places in the generated .cache.html files. I googled, however could not find any hints to its meaning ... I am not a master of Javascript, so I may be missing something

Re: Stack overflow at line: 0

2009-02-05 Thread Paul Robinson
Barry wrote: Hi ... I'm getting a message box from Internet Explorer after executing the handler for an RPC call. The message box says Stack overflow at line: 0. The data being returned is a tree. If the tree isn't returned, I don't get the message box. There are several threads on this

Re: Javascript in HTML blocks

2009-02-05 Thread sgaide
Hi, thanks a lot for these inputs. I will try the defer attribute. regards, S. On 5 fév, 05:31, Litty Preeth preeth.h...@gmail.com wrote: And also checkout that the /SCRIPT tag is broken into two: sScript = sScript + /SCRIPT + ; If you dont do that then also it wont work. On Thu, Feb 5,

ScrollPanel maxWidth or maxHeight?

2009-02-05 Thread alex.d
Hi folks, I'm trying to impelement a scrollpanel that becomes bigger (height) to the certain size (maxHeight) when populating it with data. After that vertical scrollbar should appear and the panel should stop growing. Any ideas on how to implement this would be appreciated.

Re: Bad link for GWT Documentation

2009-02-05 Thread Ricky
Hi Danny, I was so sure the problem was general !! Then I launched Firefox and everything was ok. So after investigation it seems the problem ONLY occurs when navigating with SAFARI !! (yep, I use Safari on mac OSX) On 4 fév, 16:31, Danny Schimke schimk...@googlemail.com wrote: I called the

Re: Error HTTP 503 in Tomcat

2009-02-05 Thread jamer
It is the gwt.xml module inherits name='com.google.gwt.user.User'/ inherits name='com.google.gwt.xml.XML'/ inherits name='com.google.gwt.i18n.I18N'/ inherits name='org.hanson.gwt.widgets.WidgetLibrary'/ inherits name='com.allen_sauer.gwt.dnd.gwt-dnd'/

Re: Best image preloading practice?

2009-02-05 Thread darkflame
Thanks for your help. I know this isnt an issue many would come accross, allthough I thought there might be general methods for sensible progressive loading of large content. I should have been a bit more specific with the way the app works, however, as it really does completely rule-out using

Re: Call event after an other

2009-02-05 Thread Damien Picard
Hi ! You can control event propagation with low-level functions (onBrowserEvent, Event) ; in your case, use the Event.cancelBubble function : http://google-web-toolkit.googlecode.com/svn/javadoc/1.5/com/google/gwt/user/client/Event.html#cancelBubble(boolean) 2009/2/5 Danny Schimke

Re: Can i trace a path with google statics maps?

2009-02-05 Thread savio
thanks but, can i use a GWT library in a java framework? the question is.I'm doing a java framework for mobile. this framework is part of a big project ... i would need some GWT library for hosted mode. what can i do? thanks --~--~-~--~~~---~--~~ You received this

Re: Error HTTP 503 in Tomcat

2009-02-05 Thread Lothar Kimmeringer
jamer schrieb: It is the gwt.xml What is in the gwt.xml? A correct quoting might avoid this question in the future by the way. In apache tomcat i use java 1.5 and i compile with java 1.6, because apache tomcat not running with java 1.6, and i don't understand it. Install a JDK 1.5 and

Call event after an other

2009-02-05 Thread Danny Schimke
Hi! If I have following problem: I enter some text in a textbox. Now I click on a button to save data to a database. With leaving the edit ists onChange- event is called, but the onClick- event of the button is called too at same the time. Saving is faster than onChange. I tried to handle the

Script error in IE 7 in web mode

2009-02-05 Thread Danny Goovaerts
I have a GWT application that runs OK in hosted mode. When I compile it, it gives a script error on Internet Explorer 7. The compile version runs correctly in Firfox, Chrome and Safari. I've turned on script debugging in IE7 and it gives me the following message (translated from Dutch)

gwt site interface

2009-02-05 Thread jake H
Hello, Can someone help me to implement a very same panel like gwt group use? I mean a two-level-panel , with the options in the one side and by clicking something in the submenu to reveal you the appropriate informations in the other panel. But i would like to keep the format of gwt site. Like

View remaining content of a full ocuupied window after resizing

2009-02-05 Thread aragorn
I have created a webpage which fits itself to the size of the browser window at start. Whenevr it resizes, I want to get a scrollbar which will help me navigate the entire page. I tried using CSS overflow property but that doesnt work as in i am not able to view all the contents. The scrollbar

Get remaining height of a panel or window

2009-02-05 Thread aragorn
Imagine I create a containerPanel which contains 2 different panels- consider A and B. One of these contained panels, say A, changes its dimensions at runtime so I have to reset the other panel B's size accordingly. Is there any way to get the current height of that panel A. What is the

Re: Best image preloading practice?

2009-02-05 Thread gregor
I'm not sure I can be of much more help on this myself, since I have never written anything like this, and I have not come across any specific posts about it I can recall - maybe some members have, so you can hope A few ideas/comments in-line: On Feb 5, 11:42 am, darkflame

Re: Get remaining height of a panel or window

2009-02-05 Thread gregor
It sounds as though you are calling getOffsetHeight before the display has been fully rendered. A solution is to put your sizing algorithms inside a DeferredCommand. That way panel A should have been rendered already, and now it will have its height property set. On Feb 5, 1:15 pm, aragorn

Re: View remaining content of a full ocuupied window after resizing

2009-02-05 Thread gregor
Hi Aragorn, Enabling scrolling in Window class should give you main window scroll bars. Resizing the browser window can be difficult to get right, it depends on your application. If all your widgets are sized relatively in percentage terms then sometimes it works out OK automatically. If not you

Re: A possible critical bug for gwt-fabridge.

2009-02-05 Thread Charlie Collins
You missed my point there. I guess I should have said I don't know OR care what gwt-fabridge is, but if you want help with it, you might as on a forum that is relevant to it? On Feb 4, 1:37 pm, Jihong jihong@satmetrix.com wrote: gwt-fabridge is a utility for gwt to access adobe swf file.

FlowPanel

2009-02-05 Thread TIGR
I have FlowPanel with some widgets, but I need some different behaviour when adding new one. In standart mode it adds to the end and if widget do not fits to the window it adds to the next row. and I need that it added new widget on top of the current row.

Re: ScrollPanel maxWidth or maxHeight?

2009-02-05 Thread gregor
Hi Alex, I think you have to explicitly specify the height of a ScollPanel in pixels to get the scroll bars to kick in, and that will set the height of the panel from the word go. If what you mean is that you want a panel to start at a minimum size, then grow as things are added to it, but then

to reload tabpanel after editing or deleting datas of another tabpanel

2009-02-05 Thread kanan
I've two menus in tab panel. (i.e item list and product list) When I edit or delete datas of either item list or product list , the other tabpanel need to be reloaded after clicking it. How can I do that? --~--~-~--~~~---~--~~ You received this message because you

how to add items in tree from database after immediately inserting new items

2009-02-05 Thread kanan
I'm using tree to display items from database. My problem is that when I insert new items in database, the newly inserted item is to display immediately in the tree . How can I do that? --~--~-~--~~~---~--~~ You received this message because you are subscribed to

A TabPanel containing a VerticalPanel that contains a HorizontalPanel that contains another TabPanel causes an error

2009-02-05 Thread Mark
A TabPanel containing a VerticalPanel that contains a HorizontalPanel that contains another TabPanel causes an error. The following code demnostrates the error. It will compile fine without errors or warnings then when launched in the Development Shell will error with Unable to load module

What about GWT in Groovy instead of Java?

2009-02-05 Thread Heart Beat
Hello I wondered if the idea of writing GWT applications in Groovy language instead of Java would be a super stupid or not. But for me, as I am new to Java world, it seems to be great idea. Any opinions or directions? --~--~-~--~~~---~--~~ You received

How GWT/Ajax Image viewer/editor

2009-02-05 Thread Sandeep Khanna
Can someone guide me as to how one would go about to build a very very simple multi-page image (TIFF) viewer/editor using GWT. The interface would be similar to Adobe Reader with page thumbnails on the left and the actual page image on the right. Additionally, the actions allowed on this

ie Design issue with GWT dialog box without title

2009-02-05 Thread Ramkumar
I want to create a GET dialog box without title. In firefox it is working fine but in ie there is a design issue. At the top left and right side, the vertical images is getting extended like two horns. Pls help me in soling this issue? --~--~-~--~~~---~--~~

Re: IE 7.0 Issue with ScrollPanel

2009-02-05 Thread Arend van der Veen
Hi All, I finally found a solution to this and it appears to work everywhere. The problem was definitely assocated with the ScrollPanel. Instead of directly add the scroll panel to my dock panel, I made a composite widget that contained a tree on a scroll panel on a vertical panel. I call

Re: ScrollPanel maxWidth or maxHeight?

2009-02-05 Thread alex.d
On 5 Feb., 16:10, gregor greg.power...@googlemail.com wrote: Hi Alex, I think you have to explicitly specify the height of a ScollPanel in pixels to get the scroll bars to kick in, and that will set the height of the panel from the word go. If what you mean is that you want a panel to

getting members of the outer class

2009-02-05 Thread reinika
hi! maybe somebody could help me with this. i'm trying to set the MediaStation static variable result in an inner class, unfortunately the the method getXMLContent(...) still returns the initially set string nothing when calling it with: --- Window.alert(Content: +

Re: Script error in IE 7 in web mode

2009-02-05 Thread Arend van der Veen
Hi Danny, I had a similar problem when I was parsing an XML document. In my case, I was a little careless about trapping errors and casting classes. As it turned out Safari and Firefox ignored the errors while IE generated an error. I was able to identify the offending lines of code and

Calling Embedded Object's Methods from GWT

2009-02-05 Thread Ronen
Hello, I'm working on a system which Integrates an embedded object in a GWT application. Part of the HTML page I have the following content: object style=position: absolute; left: 296px; top: 140px width=400 height=300 classid=clsid:02BF25D5-8C17-4B23-BC80- D3488ABDDC6B

Re: getting members of the outer class

2009-02-05 Thread federica.faggi...@gmail.com
I try to suggest you something, but I hope not to give a trivial suggestion to you... Are you sure that you call MediaStation.getXMLContent() after the callback returns? For what I can read in your code, you send the callback in the try / catch block, then the next statement that is executed

Re: how to add items in tree from database after immediately inserting new items

2009-02-05 Thread Litty Preeth
If the data insertion call is happening from some UI action then in the onSuccess of insertion call you can tell the tree to update itself. If that is not possible then your tree can check for any updates proactively using a Timer. On Thu, Feb 5, 2009 at 3:47 PM, kanan keri.s...@gmail.com wrote:

Re: unexpected behavior of FlowPanel's insert method

2009-02-05 Thread Giles Baxter
If I comment out the add() call, no content is added at all, so I never get a link that I can use to navigate to the next page. On Thu, Feb 5, 2009 at 12:18 AM, Damien Picard picard.dam...@gmail.comwrote: And if you only try to remove the currScreen ; is it removed ? 2009/2/5 Giles Baxter

Re: getting members of the outer class

2009-02-05 Thread reinika
yes, that might be an issue. i know it goes back to the basics of programming, but maybe you can give me an outline how i can achieve to call a method for reading a xml file and returning its content (as you say you've never seen something like that before). thanks! On Feb 5, 5:00 pm,

Re: ScrollPanel maxWidth or maxHeight?

2009-02-05 Thread Litty Preeth
there is some max-height CSS property. But dont know if it works. On Thu, Feb 5, 2009 at 8:59 PM, alex.d alex.dukhov...@googlemail.comwrote: On 5 Feb., 16:10, gregor greg.power...@googlemail.com wrote: Hi Alex, I think you have to explicitly specify the height of a ScollPanel in

Re: ScrollPanel maxWidth or maxHeight?

2009-02-05 Thread gregor
Oh, in your use case, Alex, you do have an event - adding an item to the panel. Just check the height after new item added and set the height of the ScrollPanel in pixels if max value reached I would think answers. I have looked in vain for a general method to get ScrollPanels to resize and

Re: getting members of the outer class

2009-02-05 Thread federica.faggi...@gmail.com
I'll try, hoping to be helpful! A lot of code decision depends on exactly what you want to do with this code. I do some assumption now: 1- you need to load at some kind of startup your variable 'result ' 2- you need to read the content of the 'result' variable later in the code. I would do

how to access objects from another frame?

2009-02-05 Thread asdf_asdf
His, Read some posts in the group and still wondering if implementing such a scenario would be possible with GWT: A web page is served which contains two frames - one for presenting the stuff and the other one to constantly make requests to the server (a timer) and maintain latest of data (lots

Re: unexpected behavior of FlowPanel's insert method

2009-02-05 Thread Giles Baxter
My solution is to create a new content screen each time, by checking the class at runtime and calling a factory method. It's a workaround...but I would still like to know what was going on under there! Thanks for your help. On Thu, Feb 5, 2009 at 8:20 AM, Giles Baxter giles.bax...@gmail.com

Re: Hosted Mode not refreshing

2009-02-05 Thread gemmasilvers
I figured this out and I'm sad to say it was user error *sigh*. My NetBeans classpath configuration for running the app in Hosted Mode included an *old* version of the app's source and build directories, so naturally, the hosted mode shell was interpreting the old code, not my updated code.

Re: getting members of the outer class

2009-02-05 Thread reinika
like you already said, it is indeed a problem that the callback request isn't finished in the time the value is returned. i'll figure this out now. thanks for your patience! On Feb 5, 5:38 pm, federica.faggi...@gmail.com federica.faggi...@gmail.com wrote: I'll try, hoping to be helpful! A lot

Re: how to access objects from another frame?

2009-02-05 Thread Damien Picard
If you can accept browser's plugins in your project, take a look at Google Gears. With this, you can take a better control of locally stored data and much more ... http://gears.google.com/ 2009/2/5 asdf_asdf denis.ergashb...@gmail.com His, Read some posts in the group and still wondering if

Re: Best image preloading practice?

2009-02-05 Thread darkflame
I'm not sure I can be of much more help on this myself, since I have never written anything like this, and I have not come across any specific posts about it I can recall - maybe some members have, so you can hope... Thats ok, anythings welcome :) The fundamental issue is that the GWT compiler

Help with GWT

2009-02-05 Thread samurai.monk1
I am working in a port of a very large Java application to PHP. The required path was to modify the Java2Javascript compiler to produce PHP code instead of JavaScript. Right now I have found: JavaToJavaScriptCompiler: I understand that this is the main class. JavaToJavaScriptMap.java: My hope

Re: Stack overflow at line: 0

2009-02-05 Thread Barry
Thanks, Paul ... ... some perspective is a help. Yes, I realize that OOPHM will at least allow me to switch to FireFox for hosted mode, and that's a good thing. But GWT2.0 isn't here yet, so for now, I think I'll have to flatten the tree for marshalling and then reinflate it in the browser ...

Deploying a GWT application

2009-02-05 Thread RussAbbott
When I compile my GWT application I get 13 files, including the .html and .nocache.js files. Apparently these two files are not sufficient to run the application. (If I launch the .html file in isolation along with the .js file the application doesn't work.) Does that mean that when I'm ready

Re: Script running slow error in IE

2009-02-05 Thread Mr. Taylor
Make use of DeferredCommand when performing intense UI updates. The drop downs could be lazy loaded as when the user clicks on them the content gets loaded from the server. I hope that leads you into the right direction to fix your problem. I believe there is an incremental DeferredCommand

Re: Can we load an html file and add it as a Widget?

2009-02-05 Thread Mr. Taylor
Just use the RequestBuilder class and do a get request for your html file. Create the html panel and use DOM to set the inner html (DOM.setInnerHTML()) with the String returned from the request builder callback. You can then do myPanel.addAndReplaceElement(widget,id); I am doing this now in my

Re: Deploying a GWT application

2009-02-05 Thread Lupo
Hi Russ - Yes, you need to copy the entire output directory. More information can be found in the tutorial, found here: http://code.google.com/docreader/#p=google-web-toolkit-doc-1-5s=google-web-toolkit-doc-1-5t=GettingStartedWebMode -Todd On Feb 5, 2:14 pm, RussAbbott russ.abb...@gmail.com

Re: Deploying a GWT application

2009-02-05 Thread Jason Essington
O.K. the compiler spits out pretty much everything that was in a public path, so expect to see those in the output (www) directory. in addition you'll likely see some of the following: [module_name].nocache.js - this is the bootstrap file that loads the actual GWT module. [hash].cache.html

Re: Best image preloading practice?

2009-02-05 Thread gregor
Ah, this sounds quite usefull to hide the loading, allthough I'll have to read up. I assume this is how, say, GoogleMaps does it? I think it's quite common where you want to have control over how images are handled yourself - as I say there are plenty of examples around of how to do the

Re: Stack overflow at line: 0

2009-02-05 Thread Scooter
If you do some searching on this I think you will find that it is related to javascript code that is making recursive or repeated calls to the same javascript method. I think IE is treating this as some sort of warning/error to guard itself against potential stack overflow problems. I have chased

Re: Deploying a GWT application

2009-02-05 Thread RussAbbott
Thanks. I had found this page (http://code.google.com/docreader/ #p=google-web-toolkit-doc-1-5s=google-web-toolkit- doc-1-5t=DevGuideWebMode) but it wasn't as clear as the page you cited. Now I have another question. In this task, I'm attempting to use GWT to enhance an existing web page.

Re: Best image preloading practice?

2009-02-05 Thread Martin Gorostegui
Hi darkflame, I think the best way of (pre)loading images depends on the kind of app you have. I visited the url you shared with us and run a Fiddler2http://www.fiddler2.com/session through it to discover that around 100 requests are fired to get icons, textures, buttons, gradient bars, etc which

Re: basic client RPC question;the param of setServiceEntryPoint()

2009-02-05 Thread Dan Ox
Yeah, that doesn't sounds great. I've never read a book on GWT. All the information you need can be got from google's GWT page and this forum. On Feb 5, 2:49 am, beeky staff...@marine.rutgers.edu wrote: Dan and Isaac, Thanks very much for the explanation.  I think the basic problem is the

Re: Deploying a GWT application

2009-02-05 Thread Jason Essington
just add script ... src=[modulename].nocache.js/script to the html pages that you want to include your GWT module in -jason On Feb 5, 2009, at 2:11 PM, RussAbbott wrote: Thanks. I had found this page (http://code.google.com/docreader/ #p=google-web-toolkit-doc-1-5s=google-web-toolkit-

Re: PropertyUtils usage?

2009-02-05 Thread Scott Blum
It's part of the embedded Tomcat. This should go away in the future as Tomcat is deprecated in 1.6. On Mon, Feb 2, 2009 at 5:28 AM, Ed post2edb...@hotmail.com wrote: Hellu all, Why is GWT using his own version of the org.apache.commons.beanutils.PropertyUtils class in the gwt-dev jar ?

Deploying GWT application (WAR)

2009-02-05 Thread Jonathan
Hi to all, I managed to install properly gwt that runs fine under my linux. However, i have some problems to understand the deployment step to war. I use a servlet to upload a file to server so i would like to deploy my project WITH tomcat. Is that possible ? So that, if i want to install it

Re: Help with GWT

2009-02-05 Thread Ben Tilford
You may want to look at antlr On Thu, Feb 5, 2009 at 1:39 PM, samurai.monk1 samurai.monk2...@gmail.comwrote: I am working in a port of a very large Java application to PHP. The required path was to modify the Java2Javascript compiler to produce PHP code instead of JavaScript. Right now I

Re: PropertyUtils usage?

2009-02-05 Thread Sumit Chandel
Hi Ed, It turns out that packaging our own version of org.apache.commons.beanutils.PropertyUtils (and other org.apache.commons classes) was needed in order to embed the Tomcat server in hosted mode. Since we're moving to Jetty in GWT 1.6, this should no longer be an issue moving forward. Thanks

onClick event for inline text

2009-02-05 Thread vroom_vroom
this seams like it would be incredibly easy and straight forward, but after an hour of looking i had to post. I have a bunch of text in a paragraph. i would like one word in that paragraph a link that when i click can call a handler method. In javascript this is super easy, in GWT it seams to be

onclick event for inline text

2009-02-05 Thread vroom_vroom
this seams like it would be incredibly easy and straight forward, but after an hour of looking i had to post. I have a bunch of text in a paragraph. i would like one word in that paragraph a link that when i click can call a handler method. In javascript this is super easy, in GWT there doesnt

Re: Help with GWT

2009-02-05 Thread samurai.monk1
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-Toolkit@googlegroups.com To unsubscribe from this group, send email to

Re: onclick event for inline text

2009-02-05 Thread vroom_vroom
I should say, the way i am planning to do it is to use labels for the words i want to be able to click on and use ccs to try and make the label in-linewould be nice if there was a better way On Feb 5, 3:33 pm, vroom_vroom slabarb...@gmail.com wrote: this seams like it would be incredibly

Re: getting members of the outer class

2009-02-05 Thread Dan Ox
You need to rethink your approach a bit more. Making an asynchronous call inside a synchronous method will not produce the results you want. You should make the asynch call, then do whatever you want to do with the XML result inside the callback. This means that the onResponseReceived needs to

RequestBuilder.sendRequest(Serializable object, ...)?

2009-02-05 Thread otismo
I'm trying to set up a load testing framework for my gwt app. I've used jmeter and liked it, but I have to re-record my scripts whenever the gwt version changes. I'd like to write some simple load tests and let gwt itself format the requests. My rpc client call looks like this:

Implementing Throwable getStackTrace()

2009-02-05 Thread Adligo
Hi All, I am interested in implementing Throwable getStackTrace() in the actual browser JavaScript. I realize it works in hosted mode when running in a actual JVM. Is this even possible since the auto generated JavaScript is so different from the Java or was it just not attempted? I do

Anyone configure GWTShell to listen on a network interface?

2009-02-05 Thread Transplant
Has anyone dug into GWTShell's tomcat configuration to figure out how to make it listen on a real network port? I'd like to make it listen on a real network interface (instead of loopback) so that I can connect and test multiple clients with different OS/version combinations. Anyone?

Given a HTML width and know the height required for content

2009-02-05 Thread Kevin Tarn
If the width of HTML is given, is it possible to get the required height to completely show the HTML content? Best Kevin --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this

Detailed Google Web Toolkit Documentation

2009-02-05 Thread hramsdell
Hello all, My company has recently started documenting in extensive detail open source systems including the Google Web Toolkit. We are looking for feedback and suggestions on the types of diagrams, models, metrics, etc. that would be useful to you all as developers of this system. Currently we

Re: View remaining content of a full ocuupied window after resizing

2009-02-05 Thread sagar
Well I have not used WindowResizeListener in my code. Instead I have used CSS wherein i state the min-width and min-height for mu main window and whenever the window is resized beyond this minimum specification, a scrollbar appears. Also some of my widgets have their widths/heights in percentages

Re: Deploying GWT application (WAR)

2009-02-05 Thread Litty Preeth
Well for web application you dont give the user a WAR file, but you deploy the war file on a server machine (where you have an application server like Tomcat installed) and then give the url of the application to the user. User will use his browser to open ur URL. - litty On Fri, Feb 6, 2009 at

Re: onClick event for inline text

2009-02-05 Thread Litty Preeth
Well you can make tht particular word into a seperate Label and give click listener to the label. On Fri, Feb 6, 2009 at 4:58 AM, vroom_vroom slabarb...@gmail.com wrote: this seams like it would be incredibly easy and straight forward, but after an hour of looking i had to post. I have a

Re: onclick event for inline text

2009-02-05 Thread Litty Preeth
You can use a HTML widget and around the particular word you can place anchor tags with onclick handler. On Fri, Feb 6, 2009 at 5:11 AM, vroom_vroom slabarb...@gmail.com wrote: I should say, the way i am planning to do it is to use labels for the words i want to be able to click on and use

Re: Caching question - using GWT to create Google Gadgets

2009-02-05 Thread Steven
I noticed in the comiled code a lot of calls using: _IG_GetCachedUrl() that's excellent! and just the way I want it. However - that does then leave something to be desired when you are developing and making changes frequently. In those case it would be nice to have { refreshInterval: 0 }

Re: Call event after an other

2009-02-05 Thread Danny Schimke
It does not work...I am doing anything wrong. Can you *explain how to use this*? I try to describe again: I habe 2 events, both in a own class. The onClick from save button in class A and the onChange from the textbox in class B. If the onChange is fired the save is fired too (look at my first

Re: Call event after an other

2009-02-05 Thread Litty Preeth
I dont think you can change the order of the vents. But here may be what you can do is in the Class B have a flag indicating the running of onChnage and when onChnage is complete set this flag. Now in Class A onClick wait till the Class B flag is set and then only start handling the onClick logic.

How to clear cache

2009-02-05 Thread ArunDhaJ
Hi, I did few changes in GWT application after hosting... One of my client cannot able to view the recent changes. He is still viewing the old application. As, GWT is a javascript, instructed him to clear the temporary files through browser. But he still facing the same problem... Is GWT

Why can't I use GWT Theme support with a Gadget?

2009-02-05 Thread chip
;) In the FAQ it explains how GWT references a CSS file with relative image paths. When the GWT app in question is a gadget it is hosted through a proxy by the gadget container and all the relative image paths break. There are two issues here. 1) It would be nice if there was a way to

double click

2009-02-05 Thread arun
i have a htlmlwidget in a simple panel.Htmlwidget is draggable widget. I want to attach double click event with htmlwidget but after sinking event on htmlwidget it is no more draggable. i am able to attach double click event with simplepanel. can anyone suggest how to attach double click on

Re: Best image preloading practice?

2009-02-05 Thread darkflame
You are thinking of loading 20MB of images into the DHTML DOM of you application Am I? Does the DOM keep them there even when not displayed? These images certainly wouldnt be displayed all at once. 1 or 2 at a time at most. I'm not absolutely sure, but I think if you load an image

Re: ScrollPanel maxWidth or maxHeight?

2009-02-05 Thread alex.d
there is some max-height CSS property. But dont know if it works. Yeh i've tried it (including the expression-trick for IE but it didn't work. On 5 Feb., 17:30, gregor greg.power...@googlemail.com wrote: Oh, in your use case, Alex, you do have an event - adding an item to the panel. Just

[gwt-contrib] Re: Announcing GWT 1.6 Milestone 1

2009-02-05 Thread nicolas de loof
I just notice the About class has not the GWT_VERIOSN_NUMBER set. Seems the code expects some String replacement for @gwt_vers...@. I'm using About.GWT_VERSION_NUM constant in gwt-maven-plugin to detect the GWT version used when user provides it's own implementation. Cheers, Nicolas On Thu, Feb

[gwt-contrib] Re: Announcing GWT 1.6 Milestone 1

2009-02-05 Thread stuckagain
Hi, As a confidence test I tried to compile our projects with the new release and failed miserably. Is it expected that the GWT JavaScript compiler now seems to use native code ? Is this to support compiling in multiple processes ? Or is it a sideeffect of some other changes ? I normally build

[gwt-contrib] [google-web-toolkit commit] r4635 - changes/jat/ihm/dev/core/src/com/google/gwt/dev/javac

2009-02-05 Thread codesite-noreply
Author: j...@google.com Date: Thu Feb 5 02:26:32 2009 New Revision: 4635 Modified: changes/jat/ihm/dev/core/src/com/google/gwt/dev/javac/BinaryCompilationUnit.java changes/jat/ihm/dev/core/src/com/google/gwt/dev/javac/BinaryCompilationUnitBuilder.java

[gwt-contrib] Re: Announcing GWT 1.6 Milestone 1

2009-02-05 Thread Arthur Kalmenson
Congratulations! I'll try to give this a swing this week or next week, I hope it doesn't break the gwt-maven plugin too badly. Does anyone know when this milestone will hit the central Maven repo? -- Arthur Kalmenson On Wed, Feb 4, 2009 at 7:34 PM, Scott Blum sco...@google.com wrote:

[gwt-contrib] Re: Announcing GWT 1.6 Milestone 1

2009-02-05 Thread Emily Crutcher
Only the current gwt-incubator trunk is validated to work against the release jar. We'll be releasing a new gwt-incubator jar soon, but I'm still working on getting all the demos to build and display correctly. On Thu, Feb 5, 2009 at 12:24 PM, Scott Blum sco...@google.com wrote: Hi stuckagain,

[gwt-contrib] [google-web-toolkit commit] r4637 - wiki

2009-02-05 Thread codesite-noreply
Author: sp...@google.com Date: Thu Feb 5 09:40:23 2009 New Revision: 4637 Modified: wiki/LightweightMetricsDesign.wiki Log: Documented the runAsync light-weight metrics. Modified: wiki/LightweightMetricsDesign.wiki

[gwt-contrib] Re: Image doesn’t show when using sa me URL multiple times and using the new event system

2009-02-05 Thread aris
Is any one having this problem? I just installed the latest version and I have the same problem. If I add a random number to each call of each url, it works. But of course this is not a real solution… Thanks --~--~-~--~~~---~--~~

[gwt-contrib] Re: Image doesn’t show when using sa me URL multiple times and using the new event system

2009-02-05 Thread Emily Crutcher
Can you create a test case that is reproducible and add an issue to the issue tracker? After you do that, feel free to e-mail me the issue id and I'll take a look. The strange thing about your problem is that the load listeners are actually just adapted load handlers now, so getting different

[gwt-contrib] Re: Announcing GWT 1.6 Milestone 1

2009-02-05 Thread Scott Blum
By the way, I should point out that Maven integration might be easier in the future. http://code.google.com/p/google-web-toolkit/issues/detail?id=1032 On Thu, Feb 5, 2009 at 9:35 AM, Arthur Kalmenson arthur.k...@gmail.comwrote: Congratulations! I'll try to give this a swing this week or next

[gwt-contrib] Re: Announcing GWT 1.6 Milestone 1

2009-02-05 Thread Scott Blum
Nicolas, I can't reproduce the issue you're seeing. Do you have a weird classloader setup? Or is it possible the code you have that references About needs to be recompiled? Try the following test.. create a Main.java in your GWT install directory and run the following commands. Main.java:

[gwt-contrib] Re: Image doesn’t show when using sa me URL multiple times and using the new event system

2009-02-05 Thread aris
New Issue: http://code.google.com/p/google-web-toolkit/issues/detail?id=3340 the code is like this: public class TestImages implements EntryPoint { public void onModuleLoad() { Image img = new Image(Images/wikipedia32.gif); Image img2 = new Image(Images/wikipedia32.gif);

  1   2   >