Re: KeyboardSelectionPolicy BOUND_TO_SELECTION vs ENABLED

2016-09-02 Thread mohit
I have the very same question. Can somebody please explain this please? On Monday, November 14, 2011 at 11:40:01 PM UTC+5:30, Raziel wrote: > > Hi, could somebody provide a simple but complete explanation, and > perhaps a use case, for the usage of > KeyboardSelectionPolicy.BOUND_TO_SELECTION an

Re: Where can I find the source for GWT-user's javax.servlet.Filter class?

2016-08-03 Thread mohit
There is also a file with same name in servlet-api-2.5-sources.jar, not sure if I must use it and why the source file is missing from the GWT-users.jar (sources). On Thursday, August 4, 2016 at 10:07:29 AM UTC+5:30, mohit wrote: > > I have tried downloading the sources jar for this an

Where can I find the source for GWT-user's javax.servlet.Filter class?

2016-08-03 Thread mohit
urces or something. Thanks, Mohit -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscr...@googlegroups.com. To post to this group

Re: Updating CellTable row style

2016-03-19 Thread mohit
Thanks for the reply Jens! I tried adding mappings.getRowElement(event.getValue().getExecutionOrder()).getStyle(). setBorderStyle(BorderStyle.SOLID); But it didn't work :( mappings.getRowElement(event.getValue().getExecutionOrder() ).getStyle(). setBackgroundColor("Red"); did change the ba

Updating CellTable row style

2016-03-19 Thread mohit
Hi, I am trying to update a row style for on mouse hover. mappings.addCellPreviewHandler(new Handler() { @Override public void onCellPreview(CellPreviewEvent event ) { if (BrowserEvents.MOUSEOVER.equals(event.getNativeEvent().getType ())) { mappings.getRowElemen

Reading a local KML file in GWT?

2015-04-15 Thread mohit
I am trying to render KML layers on a google map in GWT. I have set up the geoxml.js file in my host html as : public final native JavaScriptObject createKmlParser(JavaScriptObject mapId) /*-{ var myParser = new $wnd.geoXML3.parser({ map : mapId }); return myParser; }-*/; public final native

Adding a local javascript to GWT

2015-04-13 Thread mohit
Hi I am trying to add a .js file https://code.google.com/p/geoxml3/#Basic_Usage to my GWT project. I have made the entry in my host HTML: I pasted the .js file in /src/main/resources/ and added it to my build path. I am getting Error: Failed to load resource: the server responded with a statu

Custom coloring of countries in Google Maps using Fusion Table

2015-04-11 Thread mohit
http://stackoverflow.com/questions/29577659/custom-coloring-of-countries-in-google-maps-gwt -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To unsubscribe from this group and stop receiving emails from it, send an email to google-web-too

How to remove markers from google maps v3 MapWidget in GWT?

2015-04-08 Thread mohit
I am adding markers to my MapWidget using following code snippet: private void updateCenter(LatLng center) { MarkerOptions options = MarkerOptions.newInstance(); options.setPosition(center); Marker markerBasic = Marker.newInstance(options); markerBasic.setMap(mapWidget); } But I

World map implementation in GWT

2015-04-02 Thread mohit
y appreciate if anyone of you guys share the code. Best Regards, Mohit -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubsc

World map in Google Maps API V3 in GWT

2015-04-02 Thread mohit
e the two features listed above. Currently I am looking into Google's GeoChart API to achieve this and I just wanted to know if I am on right track or there are some better options available that I should look into. I'd highly appreciate if anyone of you guys share the code. Best

Re: JS Error after compiling, runs great in dev mode

2014-04-17 Thread Mohit Garg
teService interface? > IIRC you have to declare exceptions explicitly for them to be included in > the serialization policies. I can't tell why it works in DevMode but not in > prod mode though. > > On Thursday, April 17, 2014 1:32:47 PM UTC+2, Mohit Garg wrote: >> >>

JS Error after compiling, runs great in dev mode

2014-04-17 Thread Mohit Garg
Hi, I have spent almost a couple of days trying to resolve this issue to no avail, so any help would be much appreciated. I am intercepting GWT calls using Spring MVC through a custom GwtRpcController class. The method of interest is as follows: @Override public String processCall(String

Re: widget celltable how clear before re-populate

2012-11-02 Thread Mohit Chilkoti
Hi John, Is this applicable for DataGrid too? Please see here <http://stackoverflow.com/questions/13151108/datagrid-in-gwt-cant-clear-it#comment17894401_13151108>for details. Thanks, Mohit On Tuesday, 9 November 2010 01:11:35 UTC+5:30, Jeff Schwartz wrote: > > Using one of

Re: querySelectorAll IE8

2012-07-31 Thread Mohit
> There is a typo in GWT native code in my earlier post. Please refer the > method below: *GWT Native Code: *private static native NodeList nativeQuery(Element root, String query)/*-{ return root.querySelectorAll(query); }-*/ I am using GWT 2.3 Thanks, Mohit -- You receive

querySelectorAll IE8

2012-07-31 Thread Mohit
.getElementById('container').querySelectorAll('#field'); alert(list); This code runs fine in IE8 and returns me a nodelist containing 1 element. Can anybody suggest what is the problem with my GWT native method? Thanks, Mohit -- You received this message because you are subscribe

Re: HandlerManager for Cells

2012-06-29 Thread Mohit
Thanks guys. The fix worked for me. Cheers, Mohit -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/VWvM4vMkTPkJ. To post to this g

Re: HandlerManager for Cells

2012-06-28 Thread Mohit
What I want to do is fire an event from a cell so that some other widget can listen to it? For example, I have a text input cell in a table to which I want to attach a focus handler. Like: column.getCell().addFocusHandler(new SomeFocusHandler(){ public void onFocus(SomeFocusEvent sfe){ W

HandlerManager for Cells

2012-06-27 Thread Mohit
y has suggestions on how to implement this? Shall I extend TextInputCell and add HandlerManager to it? Thanks Mohit -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To view this discussion on the web visit https://groups.google.com/d

Re: Fwd: help me please

2012-03-30 Thread mohit
the best way to start is https://developers.google.com/web-toolkit/doc/latest/tutorial/ Thanks On Mar 28, 12:00 am, Vaibhav Kale wrote: > i am student of m tech. i want do my project in gwt, GWT is new for me. so > i want your valuable guidance. > i am not understanding how can i start, i don't

Re: GWT Plugin does not work in Chrome 16.0.912.63 m on Windows 2008 64bit

2011-12-26 Thread Mohit
Hi, I faced a similar problem. But when I started the app next time, the browser start complaining that plugin is missing. I then install the missing plugin. After that, its working fine. May be try removing the plugin (if already installed) and install it again. Cheers, Mohit On Dec 26, 5:23

Re: When will you launch the GWT plugin for Firefox 8?

2011-11-25 Thread Mohit
It doesn't seems to work on Windows 64 bit. Mohit On Nov 25, 12:18 pm, Ahmet Dakoglu wrote: > http://www.sendspace.com/file/h8wgmn > > On Thu, Nov 24, 2011 at 7:15 PM, jabal wrote: > > hi, we are starting a new project and are very excited about the > > release of th

XPath based Document search

2011-09-28 Thread Mohit
"div.error" and it will search all the elements under the root element which has css class 'error'. Thanks in advance. Mohit -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, se

Re: Tracking multiple steps in a RPC request on the client

2011-09-06 Thread mohit ranjan
Make an async RPC call and update UI on OnSuccess/OnFailure() Mohit On Wed, Sep 7, 2011 at 1:13 AM, Nestor wrote: > I'm trying to find out how to implement the following functionality. > Any help would be appreciated. > > The client sends a RPC request to the server for a

Re: Setting default value for DateItem()

2011-08-29 Thread mohit ranjan
Thanks Tom. It's working. Mohit On Mon, Aug 29, 2011 at 9:10 PM, Tom Carchrae wrote: > > dateItem.setDefaultValue(new Date(System.currentTimeMillis() + (24L * 60L * > 60L * 1000L))); > > > On Mon, Aug 29, 2011 at 8:26 AM, mohit ranjan wrote: > >> Usi

Setting default value for DateItem()

2011-08-29 Thread mohit ranjan
nt time only as required. Any hint/help for this will be highly appreciated. Mohit Ranjan http://www.flipkart.com -- 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@googlegrou

Re: Firefox 6 breaks GWT ?

2011-08-23 Thread mohit ranjan
Also, any idea about dev mode @ FF 6 ? Last I tried, it was not done Mohit On Wed, Aug 24, 2011 at 1:12 AM, Roustalski wrote: > Has anyone else noticed that text boxes do not show the focus ring > when the element has focus, and that a KeyPressEvent looking for the >

Re: GWT : Best practice to send huge amount of data from server to client

2011-08-09 Thread mohit ranjan
Somewhere I read this binary serialization + compression -> send it to client Mohit On Tue, Aug 9, 2011 at 5:03 PM, vaibhav bhalke wrote: > Hi folks, > > Which are the Best practices to send huge amount of data from server to > client in GWT? > > Right now we are facing

Re: List> support by RequestFactorty.

2011-08-08 Thread mohit ranjan
Out of this topic Curious to know, what's advantage of using List> over List when doing any client/server interaction ? - Mohit On Mon, Aug 8, 2011 at 6:33 PM, br22 wrote: > Is it supported? If not, are there planes to support in in the future? > Thank you for your help. >

Re: Contents of *gwt.rpc flie

2011-07-28 Thread mohit ranjan
No response :( -Shoonya On Thu, Jul 28, 2011 at 1:19 AM, Shoonya wrote: > Hi, > > Can anybody explain me what's the exact format of *.gwt.rpc file? I > know that this contains all the whitelisted classes. > > In my project *gwt.rpc file, there are 2 lines for each class like > this > > com.xxx

GWT 2.2.0 required

2011-06-22 Thread mohit
Hi, Can anybody please tell me where to find GWT 2.2.0 plugins for eclipse. I am using : Eclipse Java EE IDE for Web Developers. Version: Helios Service Release 2 Build id: 20110218-0911 Thanks -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" g

Post upgrade problems with GWT 2.3.0

2011-06-21 Thread mohit
1.7, GWT 2.3.0, JBoss 4.0.5.GA & Eclipse Java EE IDE for Web Developers. Version: Helios Service Release 2 Build id: 20110218-0911 Guys please help, Thanks a lot, Mohit -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To

Re: Fail upgrade to GWT 2.3

2011-06-19 Thread mohit
Hi, just did exactly the same and all my errors are gone. But my application is not working properly. By properly I mean, my data table is being displayed but the data is missing. When I compile and run the same application using SmartGwt 2.1 and GWT 2.1.1 it runs just fine. It is not showing any e

Re: Is it required to update Eclipse to update GWT ??

2011-06-12 Thread mohit
Well I think it is. http://code.google.com/webtoolkit/usingeclipse.html "If you are using an earlier version of Eclipse, replace the 3.6 version number with your version (3.3, 3.4 or 3.5)." On Jun 13, 9:15 am, mohit wrote: > Hi all, > > I need to upgate GWT. > Currentl

Is it required to update Eclipse to update GWT ??

2011-06-12 Thread mohit
Hi all, I need to upgate GWT. Currently I am using GWT 2.1.1 and I want to go for GWT 2.3.0. I am using Eclipse 3.3.2. Every time I try to update GWT plugins from Eclipse-->Help-->Find and Install It fails saying : No features found on selected site(s).Choose a different s

onHover text on Tab

2011-01-10 Thread mohit
How can we show Help Text on hover of Tab element of GWT ? -- 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-tool...@googlegroups.com. To unsubscribe from this group, send email to google-web-