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

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
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

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 ())) {

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 : script type=text/javascript src=geoxml3.js/script public final native JavaScriptObject createKmlParser(JavaScriptObject mapId) /*-{ var myParser = new $wnd.geoXML3.parser({ map :

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: script type=text/javascript src=../src/main/resources/Trust/geoxml3.js/script I pasted the .js file in /src/main/resources/ and added it to my build path.

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

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

World map implementation in GWT

2015-04-02 Thread mohit
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+unsubscr...@googlegroups.com

World map in Google Maps API V3 in GWT

2015-04-02 Thread mohit
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 Regards, Mohit

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: JS Error after compiling, runs great in dev mode

2014-04-17 Thread Mohit Garg
? 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: Hi, I have spent almost a couple of days trying to resolve

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_13151108for details. Thanks, Mohit On Tuesday, 9 November 2010 01:11:35 UTC+5:30, Jeff Schwartz wrote: Using one of the concrete classes

querySelectorAll IE8

2012-08-01 Thread Mohit
Javascript Code: *var list = document.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

Re: querySelectorAll IE8

2012-08-01 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 NodeListElement nativeQuery(Element root, String query)/*-{ return root.querySelectorAll(query); }-*/ I am using GWT 2.3 Thanks, Mohit -- You received

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 group, send

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){

HandlerManager for Cells

2012-06-27 Thread Mohit
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/msg/google-web

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 vmk...@gmail.com 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

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 ahmetdako...@gmail.com wrote: http://www.sendspace.com/file/h8wgmn On Thu, Nov 24, 2011 at 7:15 PM, jabal jant...@gmail.com wrote: hi, we are starting a new project and are very excited about the release

XPath based Document search

2011-09-28 Thread Mohit
div.error and it will search all the div 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, send email to google-web-toolkit

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 nestord...@gmail.com 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 set

Setting default value for DateItem()

2011-08-29 Thread mohit ranjan
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@googlegroups.com. To unsubscribe from this group, send email to google

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 t...@carchrae.net wrote: dateItem.setDefaultValue(new Date(System.currentTimeMillis() + (24L * 60L * 60L * 1000L))); On Mon, Aug 29, 2011 at 8:26 AM, mohit ranjan shoonya.mo...@gmail.comwrote: Using Smart GWT

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 roustal...@gmail.com 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 charCode

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 bhalke.vaib...@gmail.comwrote: 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: ListListT support by RequestFactorty.

2011-08-08 Thread mohit ranjan
Out of this topic Curious to know, what's advantage of using ListListT over ListT when doing any client/server interaction ? - Mohit On Mon, Aug 8, 2011 at 6:33 PM, br22 g22...@gmail.com 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 shoonya.mo...@gmail.com 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

GWT 2.2.0 required

2011-06-23 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

Post upgrade problems with GWT 2.3.0

2011-06-22 Thread mohit
, 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 post to this group, send

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

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

2011-06-13 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 mohitchilk...@gmail.com wrote: Hi all, I need to upgate GWT. Currently I am

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

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