Re: GWT with JPA not working in hosted mode

2009-03-04 Thread sutarsa giri
Hi, you may need to take a look at -noserver option when running your gwt shell. with this, you could use your favorite servlet container as server for your gwt shell. regards, Gede sutarsa 2009/3/3 grishag grigori.gold...@gmail.com Hi, I have a problem running GWT in hosted mode using JPA

Re: Openfire and gwt

2009-03-03 Thread sutarsa giri
i tought you will not able to solve this problem about chat just with GWT. please consider to use commet to solve problem about chat regards, gede sutarsa 2009/3/2 frankCostello smar...@gmail.com Hi, In openfire I have registred 2 user : user1 and user2 When the users connect to openfire

Re: how to resize window to so that embedded Frame has no scrollbars?

2009-03-03 Thread sutarsa giri
i prefer to let iframe have scrollbar, while main window scrollbar hiden. to achieve this you need to put windows resize handler, so size of the frame always match with and the height of main window. if you want to use main window scrollbar it's a bit trouble some.you need to set the height of

Re: Jsni Help

2009-03-02 Thread sutarsa giri
you may could set the jsni method return instance of subclass of com.google.gwt.core.client.JavaScriptObject for example : class Person extends JavaScriptObject{ } On Mon, Mar 2, 2009 at 4:34 PM, jagadesh jagadesh.manch...@gmail.comwrote: Hi i read the article. i was able to get the

Re: Jsni Help

2009-03-02 Thread sutarsa giri
;}-*/; } and on jsni method : private native Person test()/*-{ var a={username:some username} return a; }-*/; i think this trick will work On Mon, Mar 2, 2009 at 4:58 PM, sutarsa giri sutarsa.g...@gmail.com wrote: you may could set the jsni method return instance of subclass

Re: (JSNI) Accessing this instance from inner JS functions

2009-03-01 Thread sutarsa giri
hi andrey, i usually use this trick when deal with this reference inside method class PageToolbar extends PagingToolbar { private native void patch() /*-{ var dummyThis=this; var pagingToolbar = th...@com.gwtext.client.widgets.component::getOrCreateJsObj()();

json date

2009-02-24 Thread sutarsa giri
dear all, I'm trying to use php as beckend for my gwt application( actually I'm not really confortable with gwt+json, but I don't have choice ), There is a thing that make me confuse. there is JSONString,JSONNumber,JSONObject,JSONBoolean, but why there is no built in JSONDate? did anyone know

Re: json date

2009-02-24 Thread sutarsa giri
readability of your data (as plain text). Hope that helps a bit. //J sutarsa giri wrote: dear all, I'm trying to use php as beckend for my gwt application( actually I'm not really confortable with gwt+json, but I don't have choice ), There is a thing that make me confuse

Re: how to use gwt in legacy system ?

2008-12-11 Thread sutarsa giri
Hi i have same experience in my project. previous project was build on the top of struts2, spring and hibernate. in my opinion, the thing that can be reuse just the data access layer. for UI part, i need to build them from scratch. rgds, gede On Wed, Dec 10, 2008 at 4:08 PM, leon [EMAIL

Re: GWT Dev library error

2008-11-03 Thread sutarsa giri
Hi Pak Joshua , i guess that problem because this servlet definition is in your web.xml *servlet servlet-nameshell/servlet-name servlet-classcom.google.gwt.dev.shell.GWTShellServlet/servlet-class /servlet * when deploying GWT application this servlet is not needed. But you need to

Re: Delaying a loop.

2008-09-30 Thread sutarsa giri
Hi Peter, i think you should change your callback method, so server 2 restart request invoke after server1 restart command complete(onSuccess or onFailure invoked by call back) -gede- On Mon, Sep 29, 2008 at 10:49 PM, Peter D. [EMAIL PROTECTED] wrote: I've read a few posts on here on how to

Re: Hmmm - new analytics (ga.js) integration?

2008-09-29 Thread sutarsa giri
Hi Pete, In my experience, when work with com.google.gwt.dom.client.Element on JSNI, it's simple if we consider that Element as javacript object directly(in fact, Element is instance of JavaScriptObject). So we don't need to use JSNI access method like

Re: url parameters

2008-09-23 Thread sutarsa giri
Hi Dirtybit, i thought you could access Window.Location to access required information from url regards, Sutarsa On Tue, Sep 23, 2008 at 8:36 PM, Dirtybit [EMAIL PROTECTED] wrote: Hi, I am building a gwt web app in which users can ask for a navigation route between two points. The