How to make nice buttons with GWT

2008-11-02 Thread Victor
GWT is a perfect tool for web application designing. I like it! Just one thing piss me off... GET doesn't have a lot of nice components, like, for example GWT-EXT or ExtGWT. This issue is easy to resolve, but who wants to include a lot of other third party javascript code in project? And if you

Re: Browser tries to load css file from maps.google.com

2008-11-02 Thread Eric Ayers
Are you sure that onModuleLoad() was not called? You can check to see if the Maps API loaded with the Maps.isLoaded() in your onModuleLoad() method. On Sun, Nov 2, 2008 at 7:38 AM, Mike [EMAIL PROTECTED] wrote: Hello again, the problem was caused by a 404 response from maps.google.com,

Re: multiple languages - problem

2008-11-02 Thread reechard
It's difficult to tell, with no code posted. I'm using localized ImageBundles (with factories, see the tutorial) and it works just fine! On Oct 29, 7:14 am, aksa [EMAIL PROTECTED] wrote: Hi, I´m new in this group and I´m searching for a solution since two weeks. can anybody say me, why the

Re: Scrollbar not Showing

2008-11-02 Thread reechard
Just posted this today.. I think it does what you need http://www.gwt-ext.com/forum/viewtopic.php?f=9t=3314 On Oct 31, 2:34 am, Arji [EMAIL PROTECTED] wrote: Hi everyone, I already looked at the forums and searched the net.  No luck. I have a GridPanel (GP) inside a Panel (P). Panel P is

Re: How to make nice buttons with GWT

2008-11-02 Thread reechard
I'm using PushButton and assigning faces from my locale-aware ImageBundle. I looked but I didn't see your code - I'm not sure what you are referring to or what you did. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups

Re: Browser tries to load css file from maps.google.com

2008-11-02 Thread Mike
Hello again, the problem was caused by a 404 response from maps.google.com, which prevented my app from starting up (onModuleLoad was not called). The exact url was: http://maps.google.com/intl/en_ALL/mapfiles/134d/maps2.api/0DD71355CF88B34A78F7E290ADDB4A15.cache.html The problem was simple to

Re: GWT, generated HTML and the W3C validator?

2008-11-02 Thread darkflame
I googled around on this myself, and the only answer I could find was no and its deliberate. I guess this is why they have that underscore in the script linkas that wont validate at all and is required/ On Oct 30, 10:17 am, Peter Krantz [EMAIL PROTECTED] wrote: Hi! I am currently

Re: Resolution Independent GUI in GWT

2008-11-02 Thread darkflame
In a perfect work it would all be vector. Sadly, SVG support isnt coming from microsoft any time soon. (not even IE8 Arg _) The two methods to make a resolution independant interface is to either just make the website with div's using css specified as % for the size's, and then having GWT use

Re: Refreshing page with javascript

2008-11-02 Thread darkflame
That normaly works for me :-/ What if you get the location; private static native String getLocation() /*-{ return $wnd.location.href; }-*/; And then just open the current location; location = getLocation(); Window.open(location); A bit crude, but that might work? On Oct

History.newItem not firing onHistoryChanged under IE :-/

2008-11-02 Thread darkflame
I searched this group, and could only seem to find the opposite problem...people wanting newItem not to fire onHistoryChange, but it does. In my case its firing on all browsers, but for some reason it isn't working on IE (at least, IE6). Anyone got any ideas what could cause this? I don't even

Re: Mysql usage using RPC in GWT

2008-11-02 Thread darkflame
I was in your position about a year ago. Depends what sort of options you have on your sever what you can use, but I found GWTPHPMySQL the route I had to use. Its actualy pretty easy but there isnt any shortcuts as such. Your GWT needs to send its request to the PHP, which searchs the mysql

Re: How to browse a folder by using gwt

2008-11-02 Thread Lothar Kimmeringer
ship schrieb: I want to browse a folder. In gwt we have option for file browsing by using FileUpload class. But we don't have any option for folder browsing. What could i use for this? In my application when i click on a button which is on a panel then a window should open for folder

About the SyntaxHighlightPanel

2008-11-02 Thread [EMAIL PROTECTED]
I am using the SyntaxHighlightPanel from GWT-Ext 2.0.5 but the xml is not highlighted. Do I have to set up sth? I am just calling: SyntaxHighlightPanel xmlPanel = new SyntaxHighlightPanel(); xmlPanel.setHtml((String) this.ntfcnEvent.getEventXml());

Re: Clearing Browser cache for upadated deployments

2008-11-02 Thread eggsy84
Hi matthew, Thats a very good approach I like that. Also it doesn't mean the user has to change the URL they visit and everything for them will just work! The developers know the difference. Good approach! On Nov 1, 5:47 am, mat [EMAIL PROTECTED] wrote: Hi, What I usually do is append a

Re: Where can I host a GWT-App with server-side RPC calls??

2008-11-02 Thread zebulon303
I read about this http://s43.eatj.com/ somewhere but I am not sure if it's working and how to make it work If anyone has a link to a tutorial, that would be greatly appreciated ... thx On Oct 22, 11:36 am, Chave [EMAIL PROTECTED] wrote: Any freehostingwith Java-Servlets support? Thx.

Re: Where can I host a GWT-App with server-side RPC calls??

2008-11-02 Thread zebulon303
Same question here ... And is there a tutorial for the whole procedure of getting things done once we have a local working application. I am using RPC Thanx On Oct 22, 11:36 am, Chave [EMAIL PROTECTED] wrote: Any freehostingwith Java-Servlets support? Thx.

Re: Where can I host a GWT-App with server-side RPC calls??

2008-11-02 Thread Alex Reid
Another option would be to use JSON and overlay types. Any server platform (PHP, Python, Ruby, etc) could then be used. Potentially more work, though. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web

Text-based serialisation

2008-11-02 Thread dk
People, I'm interested in generating a load on the serverside. Our performance testing tool, Rational Performance Tester, needs to manipulate the serialised data that is sent between the client and the server. It doesn't really like the gwt-rpc format. Is there a way to plug-in another

Re: Text-based serialisation

2008-11-02 Thread Ian Petersen
On Sun, Nov 2, 2008 at 5:54 PM, dk [EMAIL PROTECTED] wrote: I'm interested in generating a load on the serverside. Our performance testing tool, Rational Performance Tester, needs to manipulate the serialised data that is sent between the client and the server. It doesn't really like the

Re: Text-based serialisation

2008-11-02 Thread Isaac Truett
Unless you're actually trying to load test RPC deserialization, just separate your business logic from the RPC servlet implementation and load test the business logic with, for example, JUnit. On Sun, Nov 2, 2008 at 5:59 PM, Ian Petersen [EMAIL PROTECTED] wrote: On Sun, Nov 2, 2008 at 5:54

Re: Gears 0.4 features in GWT Google API Library

2008-11-02 Thread rakesh wagh
Regarding the hosted mode ClassCastexception issue I reported earlier: java.lang.ClassCastException at java.lang.Class.cast(Class.java:2951) at com.google.gwt.dev.shell.JsValueGlue.get(JsValueGlue.java:128) at

Re: Facebook Bottom Menu

2008-11-02 Thread lamine adamou
2008/10/29, Istenes [EMAIL PROTECTED]: Hi, I am new to gwt and been testing some panels and widgets. I noticed that facebook has created a nice new bottom menu. Is that made using only css or is it javascript/ajax too? Is there a easy way to create a lite version of such a menu in gwt? The

Re: Where can I host a GWT-App with server-side RPC calls??

2008-11-02 Thread Alberto Zaccagni
Hi, I used eatj.com some time ago, you get an address similar to s43.eatj.comafter sign up. It is free, that means that you have to restart your server every x hours (did not remember how many), as far as I know is the only free service supporting Java. If you go the Python way you can use Google

Re: How to make ctrl+s keyboard shortcut..

2008-11-02 Thread jhpark
thank for your answer. But evt.prevnentDefault() not work.. public boolean onEventPreview(Event evt) { Element elt = DOM.eventGetTarget(evt); int keyCode = DOM.eventGetKeyCode(evt); boolean ctrl = DOM.eventGetCtrlKey(evt); boolean

Re: How to make ctrl+s keyboard shortcut..

2008-11-02 Thread jhpark
thank for your answer. But evt.prevnentDefault() not work.. public boolean onEventPreview(Event evt) { evt.preventDefault() ; --- this method not workgin.. Element elt = DOM.eventGetTarget(evt); int keyCode = DOM.eventGetKeyCode(evt);

Re: How to make ctrl+s keyboard shortcut..

2008-11-02 Thread jhpark
thank your answer.. thank you.. public boolean onEventPreview(Event evt) { evt.preventDefault(); add this method ( 1 ) int keyCode = DOM.eventGetKeyCode(evt); boolean ctrl = DOM.eventGetCtrlKey(evt); if ( ctrl

Re: Gears 0.4 features in GWT Google API Library

2008-11-02 Thread Eric Ayers
JsValueGlueGet is about interpreting a parameter or return value in hosted mode. If, for example, you pass a string as a boolean value parameter, you'll get this error. On Sun, Nov 2, 2008 at 8:07 PM, rakesh wagh [EMAIL PROTECTED] wrote: Regarding the hosted mode ClassCastexception issue I

Re: Scrollbar not Showing

2008-11-02 Thread Arji
Thanks, walden, I will post it in the EXT forum. sorry. reechard, I tried the code you posted, and I don't know why its not showing. Anyways, based on the screenshot, I can't seem to find any scrollbar. Sorry if I missed it. Thanks for the effort. On Nov 2, 3:45 am, reechard [EMAIL PROTECTED]

How to remember username and password?

2008-11-02 Thread Alex Luya
Hello Everybody.In windows live space,if I chose to remember password,I can enter into my space directly without entering username and password.Can GWT app implement this function?where can I store usernamde and password?Cookies? --~--~-~--~~~---~--~~ You

Re: Where can I host a GWT-App with server-side RPC calls??

2008-11-02 Thread zebulon303
I am building a small website with an access to a database (CRUD fonctionnality) for a home project and I though the benefit of using GWT was to be able to use the same data structure on the client and the server. So I really would like to be able to use RPC in java on my server. It means I

GWT Dev library error

2008-11-02 Thread Joshua Partogi
Dear all, When I want to deploy my apps I encounter this exception: javax.servlet.ServletException: Wrapper cannot find servlet class com.google.gwt.dev.shell.GWTShellServlet or a class it depends on org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java: 117)

Re: In Mozilla Firefox my main panel is only visible after resizing the browser

2008-11-02 Thread alex.d
Are there any javascript errors? Install firbug in case you don't already have it and look for some errors. On 1 Nov., 03:31, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hi, I am using GWT 1.5.3 and GWT-Ext 2.0.5 on Mozilla Firefox 3.0.3. The problem is that after I compile my GWT project