Unable to work with FastTree from incubator project

2010-05-03 Thread Subhrajyoti Moitra
Hello, I am using com.google.gwt.widgetideas.client.FastTree from the incubator project along with UiBinder. I cant seem to add new FastTreeItem to the the tree object and see the updated values in the view. public class NavigatorView extends Composite implements INavigatorDisplay { public

Re: Maven, again

2010-04-18 Thread Subhrajyoti Moitra
try this http://mojo.codehaus.org/gwt-maven-plugin/ On Sun, Apr 18, 2010 at 11:25 PM, Steve steveahlst...@gmail.com wrote: I'm getting very frustrated -- reading dozens of messages, faqs, whatever I can find on the subject, but I haven't found all the info I need in one place and haven't

Re: Transferring an image over an PRC call

2010-04-16 Thread Subhrajyoti Moitra
i solved this issue, by not getting GWT-RPC in middle. Instead just a plain servlet, that returns images with appropriate content-type. The img tag, src attribute points to the ImageServlet, which serves the image. I am also interested to know if someone has solved this problem of different

Re: How to make part of the text bold in a ListBox

2010-04-16 Thread Subhrajyoti Moitra
I dont think a select element allows you to decorate text within its options. If you want decorated text, u need a custom widget, a PopupPanel, with rows of text, which can respond to MouseCLick and keyboard events. HTH Subhro. On Thu, Apr 15, 2010 at 10:52 PM, Ming Cui ming...@google.com wrote:

Re: Virtual Keyboard, howto ?

2010-04-11 Thread Subhrajyoti Moitra
I think you will require JSNI to work with these javascript libraries in GWT. Checkout the JSNI tutorial from the GWT site. HTH. Subhro. On Sun, Apr 11, 2010 at 7:50 PM, gaill...@audemat.com gaill...@audemat.comwrote: Hi, I've seen two wonderful virtual keyboards, one made with ext JS :

Re: How to get OnMouseOver Event on DIV Element

2010-04-11 Thread Subhrajyoti Moitra
extends MouseOutHandler and MouseOverHandler in your widget. implement the necessary methods. Subhro. On Mon, Apr 12, 2010 at 8:53 AM, Chad cha...@sbcglobal.net wrote: I have a custom widget that extends SimplePanel. This widget consists of a few extra DIV tags and for one I would like to

Re: GWT and Zend framework JSON communication

2010-04-06 Thread Subhrajyoti Moitra
http://sites.google.com/site/angelhurtado/tutorialgwt2 http://code.google.com/p/gwtphp/ http://www.ibm.com/developerworks/xml/library/x-gwtphp/ I consulted these articles to get a hold on the same issue u are working with. In case u havent yet seen these.. please have a look.. HTH. Subhro.

Re: Live scores client / JMS Consumer

2010-04-06 Thread Subhrajyoti Moitra
http://code.google.com/p/google-web-toolkit-incubator/wiki/ServerPushFAQ http://code.google.com/p/rocket-gwt/wiki/Comet chapter-9 of the book Google web toolkit applications http://groups.google.com/group/Google-Web-Toolkit/browse_thread/thread/5233cf1fc6f2a1a7/3c6aba6a3ae9ec81

Re: Documentation for GWT-RPC Format

2010-04-06 Thread Subhrajyoti Moitra
is there a documentation for the native gwt-rpc format? Its JSON formatted data, AFAIK. On Tue, Apr 6, 2010 at 3:24 PM, senk.christian senk.christ...@googlemail.com wrote: Hey GWT-Guys, is there a documentation for the native gwt-rpc format? or is this all in-code documented how the

Re: How to share data ?

2010-04-01 Thread Subhrajyoti Moitra
Hello, if u are using MVP pattern u must be having a AppController class to control the application flow and listen to history events (if required). The shared data can be stored as static objects on the AppController. On successful login you can set this static field. From any other view u can

Re: How to share data ?

2010-04-01 Thread Subhrajyoti Moitra
in my controller. Is there anything I am missing ? Thanks Abdullah On Thu, Apr 1, 2010 at 12:11 PM, Subhrajyoti Moitra subhrajyo...@gmail.com wrote: Hello, if u are using MVP pattern u must be having a AppController class to control the application flow and listen to history events

Re: Blur before click

2010-03-29 Thread Subhrajyoti Moitra
some mouse over/out listeners on the popup so you know if the mouse is inside of it, and set a flag so you know not to hide it if the mouse is in it. Then maybe also hide it separately when the user makes a selection.. Thanks for this tip. this idea got the job done and more. thanks again!!

Blur before click

2010-03-26 Thread Subhrajyoti Moitra
Hello, I am implementing a suggest box in GWT 2.0.3 using a text box and table. (I know there is a SuggestBox class, but current release of GWT does not let me specify my own display for suggestions) I have a blur handler on the textbox that does: myTextBox.addBlurHandler(new BlurHandler()

Re: Blur before click

2010-03-26 Thread Subhrajyoti Moitra
Hello, Thanks for the reply. A little more explanation would really help.:) Is this what I am supposed to do? myTextBox.addBlurHandler(new BlurHandler() { public void onBlur(BlurEvent blurEvent) { DeferredCommand.addCommand(new Command() {

Re: How to capture that the user has moved away from the current browser window.

2010-03-22 Thread Subhrajyoti Moitra
Thanks a lot Thomas for pointing me to the right direction. I need to spend some more time into this!! Thanks, Subhro. On Fri, Mar 19, 2010 at 8:50 PM, Thomas Broyer t.bro...@gmail.com wrote: On Mar 19, 5:20 am, subhro subhrajyo...@gmail.com wrote: Hello, I am trying to implement a

Re: ImageResource fail in IE 8

2010-03-02 Thread Subhrajyoti Moitra
I too have the same problem. There are other artifacts in the image, than what really should be showing up. This is only with IE8. FF, Safari displays corrrect images. I have set the emulation to IE7 as described in some documents out there. but it does not help. Please folks help us. Thanks,

Re: How to create custom gwt library

2010-02-17 Thread Subhrajyoti Moitra
i think gwt-maven plugin can help you do this. Have 2 separate projects, and the do a clean install on the first project. and then use it as a dependency in the 2nd one, like any other typical maven dependency. For specifics see

Re: MVP question

2010-02-15 Thread Subhrajyoti Moitra
as i am using it currently, my views are indeed dependent on the model, since my models are complicated or not enough granularity on the views to just receive and render only strings or simple data. Its a design question,i think, how you want to put your application. UI logic , like whether to

Unable to change body font from Application.css file.

2010-02-15 Thread Subhrajyoti Moitra
Hello, I am facing a rather silly problem. I cant seem to set the body fonts from my application css file. I have included it in the app-gwt.xml module file in the stylesheet tag, but my font stays to Arial. My app.css file has the following: body { margin: 0px; padding: 0;

<    1   2