a Way to differentiate between User and Code Events

2011-05-26 Thread SVR
Is there a Way to differentiate between User and Code Events? I want to do certain actions only when the user blurs out of a field but not when the code does (the blur event is generated when the code sets focus on a different field). Has anybody done anything like this? thanks -- You received

Re: MouseMove Events for CellTable / FlexTable

2011-05-12 Thread SVR
be interested to hear other ideas. Perhaps experimenting with mouseOver will yield better results though I am not whether mouseOver events continuously fire if the cursor is left in the handling area. I don't think they do but thats just a guess :P Cheers, Matt On May 7, 4:41 am, SVR svr

Re: Dropdowns closing unexpectedly in IE

2011-05-11 Thread SVR
Can somebody please tell me how to go about finding whats happening here? On Tue, May 10, 2011 at 12:16 PM, SVR svr...@gmail.com wrote: I have Focus, ValueChange and Change Handlers on some dropdowns. It appears like while the user is still working/changing the value of a ListBox

Re: GWT TextBox.getCursorPos() Issue in IE

2011-05-10 Thread SVR
I see the same problem too and only in IE. Would be great to hear a workaround / soln. thanks On Tue, May 10, 2011 at 7:02 AM, Raphael raphaelschra...@gmx.net wrote: Hi, I have a Problem while trying to get the Cursor position of an GWT TextBox in IE. It everytime returns 0. Do someone

Dropdowns closing unexpectedly in IE

2011-05-10 Thread SVR
I have Focus, ValueChange and Change Handlers on some dropdowns. It appears like while the user is still working/changing the value of a ListBox, the dropdown closes unexpectedly. This happens only in IE (using 8). Has anybody experienced this and if so is there a solution / workaround? thanks --

Set Focus to a New Window opened by Window.open

2011-05-06 Thread SVR
How to set focus to a new Window opened by Window.open? thanks -- 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 to

MouseMove Events for CellTable / FlexTable

2011-05-06 Thread SVR
Has anybody tried implementing MouseMove to highlight rows of the table? If so, can you please share your ideas? thanks -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

Re: Redirect log to Eclipse console ?

2011-05-05 Thread SVR
Look for Remote Logging here: http://code.google.com/webtoolkit/doc/latest/DevGuideLogging.html#Remote_Logging http://code.google.com/webtoolkit/doc/latest/DevGuideLogging.html#Remote_Logging http://code.google.com/p/gwt-log/wiki/GettingStarted On Thu, May 5, 2011 at 12:13 PM, Celinio

Re: PopupPanel greyed by setGlassEnabled

2011-04-26 Thread SVR
You could try setting your own style (a different background etc) with: http://code.google.com/googleapps/appsscript/class_decoratedpopuppanel.html#setGlassStyleName On Tue, Apr 26, 2011 at 4:05 PM, Micha Roon micha.r...@gmail.com wrote: I have a LoginView which is displayed in a PopupPanel on

Re: CellTable sorting : sorting several columns ?

2011-04-25 Thread SVR
I didnt go through your code :-), but you can create a new class that implements ColumnSortEvent.Handler and add it using addColumnSortHandler(). You can pass the columns to the class constructor and onColumnSort you can check the column being sorted like so: if (event.getColumn().equals(column1))

Re: Navigation between different html pages

2011-04-21 Thread SVR
the specified url On Apr 20, 6:18 pm, SVR svr...@gmail.com wrote: On Success of the RPC, you could open a new Window with Window.open. depending on what the other part of your application is, for eg., a struts action could be reached like so: Window.open(../gwt/sample_load.action

Re: Nobody is using Struts1 with GWT successfully?

2011-04-21 Thread SVR
It depends on what you want to do. We are using GWT with Struts2. Your GWT UI can be part/whole of a page (this could become the host page of your GWT app) generated by a Struts action and so on. On Thu, Apr 21, 2011 at 9:23 AM, Jak jaka...@gmail.com wrote: I've been search the entire internet

Re: CellTable Sort in 2.2

2011-04-21 Thread SVR
:55, SVR svr...@gmail.com wrote: Yes I do provide one, but what I notice is that once I click on any of the rows, the arrows show up. But until then there is no clue that sorting has been enabled. On Wed, Apr 20, 2011 at 9:36 AM, Soon Fatt Hoo sf...@sfhoo.com wrote

Re: CellTable Sort in 2.2

2011-04-20 Thread SVR
way, you will have to add ListHandler or AsyncHandler to your cellTable. Take a look at http://code.google.com/webtoolkit/doc/latest/DevGuideUiCellTable.html. On Apr 19, 12:47 pm, SVR svr...@gmail.com wrote: I am using payerColumn.setSortable(true); where payerColumn is of type

Re: UmbrellaException

2011-04-20 Thread SVR
During the debugging process, you could set the following properties in your config file, which will spit the stack trace to your sever console. I found this very helpful, however the emulated stackmode should be disabled otherwise (for performance and other reasons). Check out Ryan's talk about

Re: Navigation between different html pages

2011-04-20 Thread SVR
On Success of the RPC, you could open a new Window with Window.open. depending on what the other part of your application is, for eg., a struts action could be reached like so: Window.open(../gwt/sample_load.action); On Wed, Apr 20, 2011 at 8:51 AM, Carlos hbazz...@gmail.com wrote: hello,

Re: App Layout

2011-04-20 Thread SVR
You should first look at the samples that come with the toolkit: http://code.google.com/webtoolkit/examples/ On Wed, Apr 20, 2011 at 12:55 PM, levan sandoval...@gmail.com wrote: Hi, I'm a GWT starter, I need to create an app structure with a main menu on the left side and a main area where i

CellTable Sort in 2.2

2011-04-19 Thread SVR
I am using payerColumn.setSortable(true); where payerColumn is of type: private class PayerNameColumn extends ColumnBasicLocationData, String the document just tells to use the api, but I dont get the up/down arrow to do the sorting? What else needs to be done? -- You received this message

Hint Text

2011-03-31 Thread SVR
Ho to display hint text (like a date format, currency symbol etc) to a text field. Is there any built in feature to do this in GWT? I am not using Smart GWT or anything else. thanks -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to

GWT Date Serialization problem

2011-03-31 Thread SVR
Has anybody noticed a problem with dates and RPC. Basically I receive a date from the backend and able to see the correct date in the RPC Impl in the debugger but when I set the Date field on the client (after the the results are serialized), I see that the date is offset by a day. I havnt tested

Re: GWT Date Serialization problem

2011-03-31 Thread SVR
2011/3/31 SVR svr...@gmail.com Has anybody noticed a problem with dates and RPC. Basically I receive a date from the backend and able to see the correct date in the RPC Impl in the debugger but when I set the Date field on the client (after the the results are serialized), I see

Re: GWT Date Serialization problem

2011-03-31 Thread SVR
text with which value? Can you share the relevant code? Are you use DateBox? Juan 2011/3/31 SVR svr...@gmail.com Serialization from Client to Server is OK, but Server to Client fails. I enter say Jan 31, 1979 (a simple Text with DatePicker) and it get saved to the Database

frequent exception

2011-03-25 Thread SVR
I frequently see this in my server logs when I run the GWT application, though I am not able to say which call throws this exception. Can anybody tell me how to track this down? Exception while dispatching incoming RPC call: java.io.IOException: SRVE0080E: Invalid content length Thanks -- You

Logging client exceptions to a file

2011-03-23 Thread SVR
Is this possible, I know GWT is client side, but is this possible at all? The debug/log window (client side) is pretty lame and doesnt even allow copy/paste. I know there is an exception thrown, but can hardly scan the window without search facility or copy/paste to notepad and search? Any ideas?

Re: GWT module not loading

2011-02-28 Thread SVR
Check your module gwt.xml file, or copy it here On Sat, Feb 26, 2011 at 3:52 PM, Krishna krishna.alap...@gmail.com wrote: Hi All, I am new to GWT and using the GWT eclipse plugin to run my GWT module. I am getting the following error while running the module using Run As Webapplication

user agent property

2011-02-17 Thread SVR
What does it mean to do this in your module defn file: set-property name=user.agent value=gecko1_8/ set-property name=user.agent value=ie6/ set-property name=user.agent value=ie8/ I did this and my module was crashing in either of the browsers, depending on which was declared later and

Re: user agent property

2011-02-17 Thread SVR
thanks. I was wondering how it works by default. On Thu, Feb 17, 2011 at 3:10 PM, Philippe Beaudoin philippe.beaud...@gmail.com wrote: Only the last line is taken into account here. If you want to support more than one browser, specify a comma-separated list in the value property, for

Re: IE problems anybody?

2011-02-16 Thread SVR
Has anybody come across this kind of error? If so can you please share what the problem was? thanks V On Tue, Feb 15, 2011 at 12:35 PM, SVR svr...@gmail.com wrote: Hi On Debugging I found the problem occurs in initWidget(binder.createAndBindUi(this)); (I am using uibinder). The code works

Does GWTTestCase work in noserver mode?

2011-02-15 Thread SVR
Does GWTTestcase work while not using the embedded server, that is while using the noserver option. If so, can somebody please share how to do this? thanks Vidhya -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send

Re: IE problems

2011-02-15 Thread SVR
to resolve this IE problem? Thanks On Mon, Feb 14, 2011 at 5:39 PM, Sebastian Rothbucher sebastian.rothbuc...@clarities.de wrote: Hi SVR, that's indeed a challenge - if nothing else does help any more, try pinning down the problem by inserting debug statements (e.g. alerts) closely

IE problems

2011-02-14 Thread SVR
Hi I have my GWT module working in FF, I am trying to launch the same in IE and get the following error: In general, I would like to know how to approach/debug problems of this nature in IE? Thanks Webpage error details User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0;

UIBinder Localization anyone?

2011-02-11 Thread SVR
Hi I am trying to localize the labels in the uibinder. I am passing the locale value through meta tag like: meta name=gwt:property content='locale=FR' and do find that it is correctly set by checking the value of: LocaleInfo.getCurrentLocale().getLocaleName() However even though I have

Re: UIBinder Localization anyone?

2011-02-11 Thread SVR
I followed this: http://code.google.com/webtoolkit/doc/latest/DevGuideUiBinderI18n.html I think I have followed all the instructions according to this link above. I do use messages interface for showing say error messages. The xyzMessages.properties and xyzMessages_fr.properties etc are in my

Re: UIBinder Localization anyone?

2011-02-11 Thread SVR
Sorry, I didn't realize it was case-sensitive! Once I changed it to fr in meta name=gwt:property content='locale=FR', it worked. Thanks a lot. On Fri, Feb 11, 2011 at 2:21 PM, Jeff Larsen larse...@gmail.com wrote: have you tried adding locale=fr to your url params to make sure that it is

Re: UIBinder Localization anyone?

2011-02-11 Thread SVR
How do I dynamically invoke the message for a key (key not known in advance). I have messages (or rather message keys) coming from the BE. I want to look up the way you do in other frameworks: message(key). How can I use messages to do this? thanks On Fri, Feb 11, 2011 at 2:35 PM, SVR svr

Re: UIBinder Localization anyone?

2011-02-11 Thread SVR
Thanks again. That should work for now! On Fri, Feb 11, 2011 at 3:13 PM, Jeff Larsen larse...@gmail.com wrote: out of the box, you have http://google-web-toolkit.googlecode.com/svn/javadoc/2.1/com/google/gwt/i18n/client/ConstantsWithLookup.html Messages is a bit more difficult because

Re: Testing GWT services

2011-02-01 Thread SVR
Selenium On Tue, Feb 1, 2011 at 7:24 AM, Amol12 amolkok...@gmail.com wrote: Hello Ezequiel, Junit will involve is much coding to which I am not too much familiar, is there any tool through which we can send request and get the desired response? Regards, Amol On Feb 1, 10:16 am,

GWTTestCase

2011-01-31 Thread SVR
I am trying to write my first unit test to test a server side (RPC) method. Say I have: public void testSubmitWord() throws Exception { final Hello module = new Hello(); module.onModuleLoad(); module.submitWord(); Timer timer = new Timer() {

PopupPanel

2011-01-28 Thread SVR
http://google-web-toolkit.googlecode.com/svn/javadoc/2.0/com/google/gwt/user/client/ui/PopupPanel.html Can somebody please tell me from the above doc, which sample project does the PopupPanel image correspond to? (I mean the sample code for the example Richard Feynman popup). I want the exact

GWT extension libraries

2011-01-18 Thread SVR
Hi I would like to know (and probably many others) if your GWT project is using an extension library like EXT GWT or Smart GWT. If so, which one and is it for anything more than better widgets? I am trying to evaluate the necessity for one in my GWT project. Appreciate your inputs. Thanks -- You

GWT Validation Framework

2011-01-17 Thread SVR
Has anybody used the GWT Validation Framework based on the JSR-303http://code.google.com/p/gwt-validation/ Can you please provide your thoughts on its usefulness and can you please point to some useful links on its usage with examples. thanks -- You received this message because you are

Re: GWT Validation Framework

2011-01-17 Thread SVR
I dont see it using the gwt validation framework. do u mean a later version / beta? On Mon, Jan 17, 2011 at 1:57 PM, Miroslav Genov mge...@gmail.com wrote: You can take a look into DynatableRf example that comes with the SDK. -- You received this message because you are subscribed to the

Re: GWT Validation Framework

2011-01-17 Thread SVR
This is not part of any released code? Is it planned to be part of ver x.y? Is http://code.google.com/p/gwt-validation/ a different project? thanks On Mon, Jan 17, 2011 at 2:47 PM, Nick Chalko ncha...@google.com wrote: On Mon, Jan 17, 2011 at 7:43 AM, SVR svr...@gmail.com wrote: Has

Re: Server Log

2011-01-13 Thread SVR
) Is there any way to configure log4j to log those exceptions? On Jan 12, 11:23 pm, SVR svr...@gmail.com wrote: You could catch and throw the same way you would do in any java appln. On Wed, Jan 12, 2011 at 5:16 PM, pete superp...@geekcity.de wrote: Hallo, is there a way to show

PopupPanel position

2011-01-12 Thread SVR
I am trying to position a popuppanel right next to a TextBox Element. The textbox element is way down in the bottom of the page with scrollbar. While trying to position the popup using setPopupPosition(), I am not able to get the relative left and relative top of the TextBox element. I tried all

Re: Server Log

2011-01-12 Thread SVR
You could catch and throw the same way you would do in any java appln. On Wed, Jan 12, 2011 at 5:16 PM, pete superp...@geekcity.de wrote: Hallo, is there a way to show stacktraces of UnexpectedExceptions after the webapp is deployed? I have logging enabled in general, if I manually use my

Re: 2.1.1 Documentation Please

2011-01-10 Thread SVR
I have a poppanel which I want to position like a tooltip to a textbox. I am using textbox's getAbsoluteTop and getAbsoluteLeft to position the popup. However I get the following exception when doing a txtBox.getElement().getAbsoluteLeft() What is wrong or is there any other way to achieve this?

Element position

2011-01-10 Thread SVR
I have a poppanel which I want to position like a tooltip to a textbox. I am using textbox's getAbsoluteTop and getAbsoluteLeft to position the popup. However I get the following exception when doing a txtBox.getElement().getAbsoluteLeft() What is wrong or is there any other way to achieve

Re: GWT 2.1 compiler option : -noserver

2011-01-07 Thread SVR
Hi I solved the problem by creating a Debug Config in RAD/Eclipse instead of as an Ant Target. Though, I still dont know why the ant target (devmode) with the same options (-noserver etc) would still not break at a break point. Also the prev error was due to me not incl. the proper src path (I had

Re: Popup closes on clicking outside

2011-01-07 Thread SVR
Are you setting the auto-hide property of the PopupPanel to true? check out the constructor parameters: http://google-web-toolkit.googlecode.com/svn/javadoc/2.0/com/google/gwt/user/client/ui/PopupPanel.html On Fri, Jan 7, 2011 at 10:49 AM, Vik vik@gmail.com wrote: Hie I am using a gwt popup

Re: GWT 2.1 compiler option : -noserver

2011-01-06 Thread SVR
, agi agata.p...@gmail.com wrote: and how do you exactly run your application? can you paste whole command? I am using -noserver argument from eclipse and it works just fine.. On Jan 4, 2:44 am, Srividhya Ramachandran svr...@gmail.com wrote: I want to run the appln in Websphere server