Re: launching in a new tab/broswer

2010-04-22 Thread Sudeep S
for ur second point ...u can create your custom command implement all the logic in one execute block On Fri, Apr 23, 2010 at 1:04 AM, Stefan Bachert stefanbach...@yahoo.dewrote: Hi, you can create a new window. (Window.open) But as far as I remember, you can not control whether the new

Re: image help

2010-03-29 Thread Sudeep S
i am not sure if this is a right approach...how about placing a transparent div over the image. would that work. On Tue, Mar 30, 2010 at 12:22 AM, Chris thechris...@gmail.com wrote: does anyone know if there is a way to disable someone from right clicking on an image and being able to save it?

Re: Passing parameter via POST

2010-03-24 Thread Sudeep S
HI Vincent, I had a similar requirement, i've used a intermediate servlet to which the data was posted ...the parameters were picked and stored in session and later retrieved from gwt servlet. had to follow this approach because gwt servlet doesnt take POST method. Thanks Sudeep On Wed, Mar

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

2010-03-18 Thread Sudeep S
have you tried hiding the suggestions on blur event, to my knowledge that is fired when the user moves away from the current window On Fri, Mar 19, 2010 at 9:50 AM, subhro subhrajyo...@gmail.com wrote: Hello, I am trying to implement a google.com search form style auto-suggest box. I have

Re: Inter-frame communication

2010-03-18 Thread Sudeep S
hey Jonny, jquery has a plugin for window.post that works for all browsers. i've used that with gwt for resizing cross domain iframe. you can give that a shot. On Thu, Mar 18, 2010 at 2:08 PM, jjh j...@42quarks.com wrote: Hi, I am wanting allow extensions to my website (essentially

Re: How to center a button widget in a Panel.

2010-03-14 Thread Sudeep S
just ensure that the new panel that you have added is occupying all the width of the parent panel. set a border width to check that. On Sun, Mar 14, 2010 at 4:50 AM, Rob34226 rob34...@gmail.com wrote: I have a DialogBox with a vertical panel. The last thing I added was a button that I want

Help on SuggestBox

2010-02-22 Thread Sudeep S
Hi All, I have a use case wherein there are 2 suggestboxes and the requirement is such that the user can either select one of the suggestions or can even input his own. When a suggestion is selected from box1, box2 is populated. Now if the user types his own then its called as non standard

Re: Get data of widgets in a Panel or dynamically determine their class

2010-02-10 Thread Sudeep S
you can try checking widget.isAttached on all the widgets. the one widget that is added will return you a true. now that you know the widget you can retrieve the data entered. hope it helps Sudeep On Wed, Feb 10, 2010 at 9:23 PM, mrubioroy mrubio...@gmail.com wrote: Hi all, I'm

Re: Using the ReCaptcha Java API with GWT 2.0

2010-01-18 Thread Sudeep S
is ReCaptcha a gwt library or a simple java library. gwt module dicatates that source code be present in the lib that is refererred. On Tue, Jan 19, 2010 at 1:21 AM, jfagh jfa...@gmail.com wrote: I am trying to integrate the opensource ReCaptcha on my GWT 2.0 app. I followed the instructions

Re: Using the ReCaptcha Java API with GWT 2.0

2010-01-18 Thread Sudeep S
in the lib that is refererred. Thanks. James On Jan 18, 1:59 pm, Sudeep S sudee...@gmail.com wrote: is ReCaptcha a gwt library or a simple java library. gwt module dicatates that source code be present in the lib that is refererred. On Tue, Jan 19, 2010 at 1:21 AM, jfagh jfa...@gmail.com

Re: Using the ReCaptcha Java API with GWT 2.0

2010-01-18 Thread Sudeep S
forgot to ask, are u using this library in the client side or the server side. all that i told is applicable only if u are using it in the client side. on the server side u can use it like a normal jar On Tue, Jan 19, 2010 at 8:57 AM, Sudeep S sudee...@gmail.com wrote: gwt compiles your java

Composite and Resize event.

2010-01-07 Thread Sudeep S
Hi I have a vertical panel which has multiple sections and each of them is a composite. There is an option to add or remove records from these sections.how can the container panel be reiszed/notified with the events in the section composite. Any suggestions solutions ideas are welcome. Thanks

Re: pls help !!!!!!!!!!

2010-01-06 Thread Sudeep S
use -style PRETTY and -logLevel DEBUG to get detailed messages On Wed, Jan 6, 2010 at 11:33 PM, ben fenster fenster@gmail.com wrote: i send them they work ok in hosted but in compiled when i get to check status i get exception the site is www.vzooo.com if anyone can check it out and see

Re: Hosting GWT app on an external site

2009-12-08 Thread Sudeep S
I guess you would have to add linker = xs in the .gwt.xml thanks Sudeep On Tue, Dec 8, 2009 at 4:59 AM, Jay kry...@tpg.com.au wrote: Hi, I'm new to GWT and have been struggling with this issue for a while now. I'd like to compile my GWT application so that other sites can include my GWT

Testing GWT

2009-12-07 Thread Sudeep S
Good Day, I am new to GWT. Just as I thought I have crossed the first hurdle of making a gwt application, the second big challenge is already staring in my face. TDD might not be the right word with the approach that i am following since i have almost completed development. But i would like to

Re: flextable getcellcount and clear issue...

2009-11-26 Thread Sudeep S
can u post the code snippet for clearing cells. i guess you might be doing table.clear .. that only removes the widgets from the cells but the not cell as a whole u can try doing table.removeRow(index); On Thu, Nov 26, 2009 at 11:46 AM, golfdude padysr...@gmail.com wrote: gwt 1.7... I have

Re: MenuBar in a Flextable cell

2009-11-24 Thread Sudeep S
. One final note is that, assuming you manage to cover up the link in the table cell, you probably don't have to remove it, which might cause the table to shift around. -Brian On Nov 23, 1:12 pm, Sudeep S sudee...@gmail.com wrote: Thank you for your suggestion. i am trying a similar approach

Re: gwt + jquery rounded corner

2009-11-23 Thread Sudeep S
this ? On 22 ноя, 22:14, Sudeep S sudee...@gmail.com wrote: Hi, I am trying to use jquery.corner.js to round my panel in gwt using the below code * public* *final* *native* *void* roundCorner()/*-{ $wnd.$(#roundedPanel).corner(5px); }-*/; where roundedPanel is the id of the div

MenuBar in a Flextable cell

2009-11-22 Thread Sudeep S
Hi, I have a req wherein I have to add a menubar widget to every row in a flextable. When the menubar is clicked it opens but it also expands the cell in which it is placed distorting the layout. Any ideas on this one. Thanks Sudeep -- You received this message because you are subscribed to

gwt + jquery rounded corner

2009-11-22 Thread Sudeep S
Hi, I am trying to use jquery.corner.js to round my panel in gwt using the below code * public* *final* *native* *void* roundCorner()/*-{ $wnd.$(#roundedPanel).corner(5px); }-*/; where roundedPanel is the id of the div panel. Though it is invoking the jquery.corner.js it is not rounding it.

UI Layout and Alignments

2009-11-12 Thread Sudeep S
Hi I am new to gwt. Can someone tell me wht are the best practices in UI Design and alignments. I am using a Flex Table and FlexCell formatter for almost everything. Are there better ways to ahieve it. Thanks Sudeep -- You received this message because you are subscribed to the Google Groups

Rounded Borders in GWT

2009-11-01 Thread Sudeep S
HI, I tried to achieve Rounded Panel for a header by placing a caption Panel inside another. But it was introducing a cell padding by default. Can anyone suggest alternatives. Thanks Sudeep --~--~-~--~~~---~--~~ You received this message because you are

Re: Rounded Borders in GWT

2009-11-01 Thread Sudeep S
Thank you Chrisom, I will give it a try. On Sun, Nov 1, 2009 at 6:36 PM, chrisom sommerm...@googlemail.com wrote: You could give this one a try. It's easy to use. http://advanced-gwt.sourceforge.net/borders.html On Nov 1, 8:17 am, Sudeep S sudee...@gmail.com wrote: HI, I tried

Packaging Applications in GWT

2009-10-30 Thread Sudeep S
Hello, Can someone suggest the techniques/best practices involved in packaging the GWT applications where the client code and server code reside separately. Thanks Sudeep --~--~-~--~~~---~--~~ You received this message because you are subscribed to the

GWT + ContentServer

2009-10-30 Thread Sudeep S
Hi Is it possible to deploy the GWT client code on Content Server and the server code on Application Server. My current application heavily uses Content Server for the front end, so I need to find a way to get GWT working with Content Server. Thanks Sudeep

Re: GWT + ContentServer

2009-10-30 Thread Sudeep S
окт, 00:24, Sudeep S sudee...@gmail.com wrote: Hi Is it possible to deploy the GWT client code on Content Server and the server code on Application Server. My current application heavily uses Content Server for the front end, so I need to find a way to get GWT working with Content Server

Re: Session-Confusion

2009-10-26 Thread Sudeep S
Hi Philip, You need not create a new session for every tab. Rather what you can do is, ensure that every request from a new tab passes a Id to the gwt module and use your session like ...request.setAttribute( 'SESSION_DATA_'+Id, sessionData ) since your client is passing the id, it can use the

Re: HashMap argument type mismatch

2009-10-26 Thread Sudeep S
2 quick questions. 1. are u using generics. 2. have all the objects of your hashmap implemented isSeriliazable or Serilizable interface. On Mon, Oct 26, 2009 at 10:51 AM, Palani pas...@gmail.com wrote: Hello, I am in the process of converting from gwt 1.5 to 1.7.1 and getting the

Re: GWT.log listener in hosted mode

2009-10-26 Thread Sudeep S
Hi Alan, You can use gwt_log or i_log for remote logging gwt logger. Thanks Sudeep On Sun, Oct 25, 2009 at 10:59 PM, al.hicks al.hi...@gmail.com wrote: Hello, I am looking for some help. I want to be able to listen to the GWT.log messages that are output in the hosted mode console and use

Re: HashMap argument type mismatch

2009-10-26 Thread Sudeep S
getPropertiesMap() throws InvalidSessionException { *HashMap m = new HashMap(); * m.put(XXX, ); return m; } On Oct 26, 12:49 pm, Sudeep S sudee...@gmail.com wrote: 2 quick

Re: how to send variables in form panel

2009-10-22 Thread Sudeep S
multipart requests have to be sent via a FORM panel On Thu, Oct 22, 2009 at 6:53 PM, Lazo Apostolovski qbox2...@gmail.comwrote: Its probably a multipart message :S Try googling for how to accept multipart message on the server side here is some example but i don't know if you find usefull.

Re: debug gwt compiled javascript

2009-10-21 Thread Sudeep S
with -style PRETTY or DETAILED, which will at least tell you the method that is failing - have a look at it, and post again if you can't see the problem. Ian http://examples.roughian.com 2009/10/20 Sudeep S sudee...@gmail.com hello, I hav my gwt app, compiled and running fine

Re: Creating new methods for Async class

2009-10-20 Thread Sudeep S
I am doing something like * public* *interface* UtilService *extends* RemoteService { MapString, MapString, RateCard[] fetchdata (Customer objCustomer); } * public* *interface* UtilServiceAsync { * void* fetchData(Customer objCustomer ,AsyncCallbackMapString, MapString, Card[] callback); }

Re: Creating new methods for Async class

2009-10-20 Thread Sudeep S
try doing ListString clients = new ArrayListString(); instead of ArrayListString clients = new ArrayListString(); On Tue, Oct 20, 2009 at 11:31 PM, Sudeep S sudee...@gmail.com wrote: I am doing something like * public **interface* UtilService *extends* RemoteService { MapString

debug gwt compiled javascript

2009-10-20 Thread Sudeep S
hello, I hav my gwt app, compiled and running fine on FF, but on IE it says that *this.h.a* is null or not an object. Any ideas how to debug/backtrack the java code for such an error. Thanks Sudeep --~--~-~--~~~---~--~~ You received this message because you are

JSNI Help

2009-10-17 Thread Sudeep S
Hi, I am trying to make a jsni method call and using the return value, I want to invoke another method in the calling html. Using the getData() method in the html, I am calling getId() whose implementation is in the gwt module. The getId returns an Id which is used to make another function call

Re: JSNI Help

2009-10-17 Thread Sudeep S
This the code that I am using currently. On Sat, Oct 17, 2009 at 5:12 PM, Sudeep S sudee...@gmail.com wrote: Hi, I am trying to make a jsni method call and using the return value, I want to invoke another method in the calling html. Using the getData() method in the html, I am calling

How to read POST parameters in GWT

2009-10-09 Thread Sudeep S
Hi, I am new to gwt. I am invoking a gwt module from an external html and passing parameters in the POST. How can they be retrieved in the gwt app. Thanks Sudeep --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups

Integrating GWT with JSP

2009-10-08 Thread Sudeep S
Hi, I have a requirement wherein my application loads an external gwt application as a widget in its iframe. The application's UI is developed using JSP. Can someone suggest me the best practices followed in communicating with external GWT applications (passing data back and forth). Thanks

Re: Integrating GWT with JSP

2009-10-08 Thread Sudeep S
jsp page. In your module write one JSNI method and write your stuff to take the data from your java script code of jsp page. On Oct 9, 12:19 am, Sudeep S sudee...@gmail.com wrote: Hi, I have a requirement wherein my application loads an external gwt application as a widget in its iframe

Passing data from GWT to JSP across domains

2009-10-06 Thread Sudeep S
Hi, I am new to gwt. I had to prototype an application that loads a gwt application from a different domain as an iframe in a parent jsp. The gwt module is a utility which is used across mulitple applications (its some sort of complex calculator). It only has one button 'calculate' to trigger

Re: rpc serialization problem

2009-10-06 Thread Sudeep S
Hey Benjamin, Since u are using Generics ensure that all the classes Service, ServiceAync and ServiceImpl use the same signature i.e ListSubCatagory . btw which version of gwt are u using. Also, you can the temp dir where u can find a rpc.log file with the list of all objects that are