Hosted mode console log output not scrolling

2009-07-14 Thread waf
Hi there, Is there a way to force the hosted mode console output log to automatically scroll to latest log messages instead of it staying where it was left at last log inspection? -- waf --~--~-~--~~~---~--~~ You received this message because you are subscribed

Re: RPC not working in web mode

2009-07-13 Thread waf
of module bootstrap JS moduleA.nocache.js instead of moduleA/moduleA.nocache.js As for the RPC just configure servlet mapping in your web.xml to suite your needs. -- waf --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups

Re: RPC not working in web mode

2009-07-13 Thread waf
Try to check the compatibility of your RemoteService client (interface) and the RemoteService server/servlet methods. -- waf --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post

Re: Current Row index in FlexTable

2009-07-13 Thread waf
Hi, FlexTable is a subclass of HTMLTable which has addClickHandler and getCellForEvent methods. -- waf --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email

Re: Image Links

2009-07-13 Thread waf
Hi, Say you have Image in image (rather not from ImageBundle, because that doesn't work in IE) Anchor anchor= new Anchor(image.getElement().getString(), true, url); should do the trick. -- waf --~--~-~--~~~---~--~~ You received this message because you

Re: Current Row index in FlexTable

2009-07-11 Thread waf
Hi You should add ClickHandler to your table and then use getCellForEvent from which you can get the row and col indexes Somewhere inside onClick: YourTable table= (YourTable)event.getSource(); Cell cell= table.getCellForEvent(event); use cell.getRowIndex() and/or cell.getCellIndex() -- waf

Re: Multi paging or Multi module

2009-07-11 Thread waf
and User/Admin modules. -- waf --~--~-~--~~~---~--~~ 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

OOPHM breakpoints don't stop

2009-07-06 Thread waf
, and application runs without any problems except that breakpoints don't stop the execution. I'm running debug mode (have no problems with 1.6.4 hosted mode). Have th same problem on Ubuntu/Eclipse,Ganymede/JDK 1.6.0_13/FF3.0.11 and Windows XP/Eclipse/JDK 1.6.0_13/FF.3.5,IE7 What I'm doing wrong? -- waf

Re: OOPHM breakpoints don't stop

2009-07-06 Thread waf
My fault, it's working. -- waf --~--~-~--~~~---~--~~ 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

Re: javascript in war folder not included after building war file

2009-07-04 Thread waf
Hi, Try to use relative paths to your resources. -- waf On 4 Lip, 17:35, Marko Vuksanovic markovuksano...@gmail.com wrote: I have copied ext-js library into war folder of my gwt project. Then I have included it in my project.gwt.xml file as follows:         stylesheet src=/js/ext/resources

Re: dom manipulation works in IE but not in FF

2009-07-03 Thread waf
(DOM.java:1299) at com.google.gwt.user.client.DOM.dispatchEvent(DOM.java:1262) -- waf --~--~-~--~~~---~--~~ 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

Re: dom manipulation works in IE but not in FF

2009-07-03 Thread waf
would say it is normal that you will have extra text nodes, because any whitespace will result in a text node. As far as I know you shouldn't have those text nodes if form/table opening and closing tags are written like this form ...table ... ... /table/form -- waf

Re: use java.sql.Blob with GWT

2009-07-02 Thread waf
Hi Don't use java.sql.Blob on the client side. Move it to the server side of your application. -- waf On 2 Lip, 16:50, Vatcharaphun Rajsiri netty...@gmail.com wrote: Hi all, I'd like to store a XML file in database. So, I use java.sql.Blob class. When I compile I get the following error

Re: GWT-generated Webpage fails to display on IE

2009-07-01 Thread waf
Hi Which line is IE reporting the error now and what do you have on this line and in the neiberhood? -- waf --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send

Re: GWT-generated Webpage fails to display on IE

2009-07-01 Thread waf
Are you sure you are looking at the right file, ie. that the error occures in the bootstrap code and not in you module? This is from the verenweb.nocache.js which is pretty generic. I would rather expect the problem in appropriate hash.cache.html file. -- waf

Re: How to load a url in a panel?

2009-06-30 Thread waf
Hi This is not correct. formPanel.setHtml(htmltext); is called when the request is send and then htmltext is null or whatever value it has. It is set to the response text when the request is finished and that's some time later. You should setHtml in onResponseReceived. -- waf

Re: unable to find xml file

2009-06-30 Thread waf
was created? -- waf On 30 Cze, 18:23, thesheff dsheff...@gmail.com wrote: I'm very new to the GWT and have been reading GWT in Action.  I'm trying to follow the examples and I'm getthing this error: [ERROR] Unable to find 'dashboard.gwt.xml' on your classpath; could be a typo, or maybe you

Re: GWT-generated Webpage fails to display on IE

2009-06-30 Thread waf
Hi there, The problem is at some other place. This 'undefined' property is correct javascript construct. When trying to pinpoint a problem like this it is better to compile with the output style 'Pretty'. This way you can find more accurate location where the problem occured. -- waf

Re: GWT upload file

2009-06-23 Thread waf
the situation, or you can provide more information in the response, but that will be your custom solution. You get server exceptions on the client when using gwt-rpc only I suppose. -- waf --~--~-~--~~~---~--~~ You received this message because you are subscribed

Re: compile gwt svn from source

2009-06-22 Thread waf
I had similar problem and the following helped http://code.google.com/p/google-web-toolkit/issues/detail?id=3556 -- waf --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post

Re: loading variable from native method

2009-06-22 Thread waf
Hi daim You are not taking into account the asynchronious nature of the request that you use to initialize the Databank.dataArray. When the constructor returns dataArray is null until request completes so prepature access to the dataArray gives you null. -- waf

Re: GWT upload file

2009-06-22 Thread waf
Petein, Try to change form.add(vPanel); with vPanel.add(form); maybe that helps a little. -- waf --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email

Re: The requested URL was not allowed

2009-06-22 Thread waf
That's cleared. AppEngine application I was deploying the app was configured with Authentication Options restricted to the Google Apps domain and I tried to use it on appspot.com. When used on the designated domain it works fine. -- waf --~--~-~--~~~---~--~~ You

Retrieving JSON Data tutorial bug

2009-06-21 Thread waf
, for example the Last updated label doesn't show. So avoid this extra comma sign in JSON arrays. -- WAF --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email

The requested URL was not allowed

2009-06-21 Thread waf
Hi All ! I try to follow GWT Getting Started Tutorial and everthing was fine until the 3. Personalize the application with the User Service from GWT and Google App Engine part. Trying to use User Service on AppEngine deployed app I get 32.82.27.183 - - [20/Jun/2009:14:09:07 -0700] POST