Re: New Widget: Window Panel (minimize, maximize/restore, close, resize)

2014-10-07 Thread Anirudh Karthik
Hi Joe, I am trying to add the same functionality to my window widget . can u kindly suggest me the code details . Hoping for your positive reply :) my mail id is rapport...@gmail.com On Thursday, December 3, 2009 3:32:37 PM UTC+5:30, Joe wrote: Hello everyone, please check out this new

Re: How to add dynamic colums to celltable

2013-03-03 Thread Karthik Rallapalli
Juan, Have you figured out a way to include column sorting with this example. I tried to use ListHandler but had no luck . Thanks. On Friday, 24 August 2012 09:30:57 UTC-4, Juan Pablo Gardella wrote: Hi, I show my code where use it. CellTableListString table = new

Re: MySQL Database Connection

2013-02-26 Thread Karthik Avjs
Hi All, I have the same problem Could not initialize class 'com.mysql.jdbc. ConnectionImpl' while working with Google app engine in the Dev mode. Any leads on the solution? Thanks On Monday, June 20, 2011 5:59:35 PM UTC+5:30, Aryan wrote: Hi all, I have an application

Re: [gwt-contrib] GWT SerialisationPolicy Error

2012-05-02 Thread Karthik Reddy
*In a distinct difference from regular Java, GWT usually rewards you for being more specific about classes: if you are specific that you return ArrayList only, then GWT only makes a serializer for that, and you save client size. But if you return List..., and your classpath for the GWT

Re: how to configure apache log4j for gwt application

2012-02-10 Thread karthik vadapalli
hi tong look at this may be it was useful for you http://whatwouldnickdo.com/wordpress/186/gwt-hosted-mode-and-log4j/ On Fri, Feb 10, 2012 at 2:51 PM, tong123123 tong123...@gmail.com wrote: I placed the log4j-1.2.16.jar under WEB-INF\llib\ in server code, I write the following class

Re: How to hide a column in CellTable

2012-02-08 Thread karthik vadapalli
http://stackoverflow.com/questions/7116758/how-to-hide-column-in-cell-table-gwt watch this it might be useful for you On Wed, Feb 8, 2012 at 2:53 PM, Vibhas Zanpure vibhas.zanp...@gmail.comwrote: Hello, I tried using setColumnWidth to 0px and also tried clearColumnWidth... But its not

how should i read my styles applied

2012-02-03 Thread karthik
i have a css where i placed my styles,and i wanted to read the styles from my program,is there any way to read them. thanks in advance -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

GWT Date Formatting

2011-12-20 Thread Vemuri Karthik
I have a customized GWT Date -Time widget which is a combination of two text boxes, one to hold the date and one to hold time. When I enter the date 04/09/1956 12:00 AM (in the Date widget), internally in the ValueChangeHandler for my widget I run it through the GWT's DateTimeFormat class'

[gwt-contrib] Just wondering about the protocol for code commits.....

2011-12-07 Thread karthik reddy
-- Karthik Reddy https://plus.google.com/103243388366746199136 -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

Re: [gwt-contrib] Just wondering about the protocol for code commits.....

2011-12-07 Thread karthik reddy
I see. Thanks for clarifying, John. -- Karthik Reddy https://plus.google.com/103243388366746199136 -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

Re: how to sink a custom defined event class ?

2011-12-05 Thread Karthik Reddy
* In modern GWT development you shouldn't have to ever call sinkEvents (use addDomHandler).* * * CellTable and other Cell based widgets use the sinkEvents approach. Am I missing something? Is that just an anomaly because of the ultra-high-performance expected off of huge-data-rendering Cell

Re: GWT in Google Products

2011-12-02 Thread Karthik Reddy
say the forecast for GWT is: 70 degrees (F) and Sunny. -- Karthik Reddy https://plus.google.com/103243388366746199136 -- 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

Re: GWT in Google Products

2011-12-02 Thread Karthik Reddy
could create a table from within Google docs) -- Karthik Reddy https://plus.google.com/103243388366746199136 -- 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: Activities and Places - Ant compilation

2011-12-01 Thread Karthik Reddy
*Classes referenced from annotations have to be compiled for GWT to be able to process them from within generators (as is the case for @WithTokenizers on a PlaceHistoryMapper).* See http://groups.google.com/group/google-web-toolkit/browse_thread/thread/e0209e0e57e1152b -- Karthik Reddy

Problem running mobilewebapp sample in 2.4

2011-11-02 Thread Karthik Reddy
I am following the instructions as documented at: http://google-web-toolkit.googlecode.com/svn/trunk/samples/mobilewebapp/README-MAVEN.txt (OptionA) I am able to build the application but as I try to run it in hosted mode (using AppEngine) I get the following error on the browser : *Http

[gwt-contrib] Re: Address RunStyle TODO (issue1529805)

2011-08-24 Thread karthik reddy
I do not think *amitmanjhi *works at Google anymore: http://www.linkedin.com/profile/view?id=10952047http://www.linkedin.com/profile/view?id=10952047authType=nameauthToken=PFFTlocale=en_USpvs=pptrk=ppro_viewmore -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

Simple JSNI code snippet: Not able to invoke a method on a static variable ......

2011-08-16 Thread Karthik Reddy
public native void myJSNITest() /*-{ var stringLength =@mypkg.MyClass::myStaticStringVariable.length()(); alert(stringLength); }-*/; As I run the above code, I get the following error: * com.google.gwt.core.client.JavaScriptException: (TypeError): __static[1310776].length is not a function*

Re: Simple JSNI code snippet: Not able to invoke a method on a static variable ......

2011-08-16 Thread Karthik Reddy
This has been bugging me for a while now. Any thoughts or pointers would be much appreciated. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit

Implementing Cut, Copy Paste in a page having 70 odd widgets

2011-08-12 Thread Vemuri Karthik
Hi, I am trying to implement the cut, copy and paste functionality for a page that has around 70 widgets including text boxes, list boxes, labels, containers, panels and so on. The cut, copy and paste buttons are part of these. When a User selects text in some text box in the page and clicks on

Re: Is it ever possible for an asynchronous service method's callback to get called without yielding to the browser's event loop?

2011-08-12 Thread Karthik Reddy
See the example under *Non-Blocking / Asynchronous:* and it gives a clear example addressing Tad's question: http://quickleft.com/blog/142 -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit

Re: Implementing Cut, Copy Paste in a page having 70 odd widgets

2011-08-12 Thread Karthik Vemuri
Yup... Thanks.. That's what I was thinking too... I should use the Blur handler now since we no longer use listeners Regards, Karthik Vemuri On Aug 12, 2011, at 6:25 PM, mP miroslav.poko...@gmail.com wrote: Suggestion: what about registering a lost focus listener that sets some global

Re: RIP (Rich Internet Pages) instead RIA

2011-08-06 Thread Karthik Reddy
Or you could wait for server-side rendering to be supported by GWT. The GWT team has dropped few hints in a couple of threads indicating that the day could not be very far off when GWT does support server-side rendering. See the following threads:

Re: Отг: Do Beanvalidation(JSR-303) and editor framework play along well ?

2011-08-03 Thread Karthik Reddy
Thanks for the helpful info. I will go ahead and build the DynatableRF sample in 2.4 and try it out . Hopefully, in 2.4's DynatableRF, I could witness the fruits of the marriage between client-side validation and editor framework. -- You received this message because you are subscribed to

Re: Отг: Do Beanvalidation(JSR-303) and editor framework play along well ?

2011-08-03 Thread Karthik Reddy
First bump in the road. As I try to run my DynatableRF sample (2.4 ) I run into the following exception: * * *Caused by: java.lang.NoClassDefFoundError: org/json/JSONException * *at com.google.web.bindery.autobean.shared.impl.StringQuoter.createSplittable(StringQuoter.java:58) * * * Caused by:

Running DynaTableRF sample from the 2.4 RC release....

2011-08-03 Thread Karthik Reddy
As I try to run my DynatableRF sample (2.4 ) I run into the following exception: * * *Caused by: java.lang.NoClassDefFoundError: org/json/JSONException * *at com.google.web.bindery.autobean.shared.impl.StringQuoter.createSplittable(StringQuoter.java:58) * * * Caused by:

Re: GWT is for apps — right? But what's about static pages? (GWT's Future Plans...)

2011-08-03 Thread Karthik Reddy
I would like to make a related observation although, only tangentially related to the initial poster's questions and grievances: Even though GWT started off as a toolkit for developing desktop-style applications for the web, I think it has slowly transformed beyond the said scope. As an

Do Beanvalidation(JSR-303) and editor framework play along well ?

2011-08-02 Thread Karthik Reddy
In other words does a call like SimpleBeanEditorDriver.getErrors() give me a list of errors. I am trying this in 2.3 and I do not seem to be able to retrieve the errors via SimpleBeanEditorDriver.getErrors() . -- You received this message because you are subscribed to the Google Groups

Re: http://www.google.com/hotelfinder

2011-08-01 Thread Karthik Reddy
The feedback widget seems identical to the one used in google plus. -- 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/-/_9l2ocSOyxgJ. To post to

Re: Google Products using GWT

2011-07-27 Thread Karthik Reddy
Just did a cursory inspection of the new Google Offers application and it looks like an application built using GWT. https://www.google.com/offers/home -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web

Re: MVP best practices, how to expose a view to a presenter?

2011-07-22 Thread Karthik Reddy
@Thomas When you say cached for a while could you give an example how this can be achieved. (For example: Do you maintain the time it needs to be cached for, in a separate variable. ) In concept, I am able to understand but the execution details are kinda teasing my mind. -- You

Re: MVP best practices, how to expose a view to a presenter?

2011-07-22 Thread Karthik Reddy
Great answer. Made my day. I wish there was a way to rate answers in google groups. (just like stackoverflow). @Thomas You are being a real asset to the community and to also to the product. Just curious. Were you approached by the GWT team with an offer to join their team. Just a

Re: Disposable activities

2011-07-21 Thread Karthik Reddy
...then it's better to dispose it to free some memory. I guess, this means, explicitly invoking removeFromParent() on the view class. Am I right in this assertion??? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit

Re: Disposable activities

2011-07-21 Thread Karthik Reddy
@Thomas *...then it's better to dispose it to free some memory. * I guess, this means, explicitly invoking removeFromParent() on the view class. Do you agree with my statement??? -- You received this message because you are subscribed to the Google Groups Google Web

Was the lack of server side templating in GWT one of the reasons why Google+ team did NOT choose GWT ?

2011-07-18 Thread Karthik Reddy
As few of you might already know, Google plus team did not choose GWT but rather a differnt library, called Closure. The following were two direct quotes from Joseph Smarr (tech lead of google plus -- plus.google.com): (FYI: The full Q A with the Google+ Tech Lead can be found at:

[gwt-contrib] Was the lack of server side templating in GWT one of the reasons why Google+ team did NOT choose GWT ?

2011-07-18 Thread karthik reddy
* Note: I am cross-posting this on GWT-contributors group to solicit the responses of the GWT team. The original post on the GWT group is at : https://groups.google.com/forum/?fromgroups#!topic/google-web-toolkit/CnjBcJsknS0 * The following were two direct quotes from Joseph Smarr (tech lead of

[gwt-contrib] Was the lack of server side templating in GWT one of the reasons why Google+ team did not choose GWT ?

2011-07-18 Thread karthik reddy
* Note: I am cross-posting this on GWT-contributors group to solicit the responses of the GWT team. The original post on the GWT group is at : https://groups.google.com/forum/?fromgroups#!topic/google-web-toolkit/CnjBcJsknS0 * The following were two direct quotes from Joseph Smarr (tech lead of

Re: Any experience with GWT and JRebel

2011-07-17 Thread karthik reddy
and the name of the alternative is ... ? -- 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/-/IzALEa8IbGEJ. To post to this group, send email to

Re: Any experience with GWT and JRebel

2011-07-16 Thread karthik reddy
Kind of a digression but could benefit the community. Is there a free alternative to JRebel on the server side ?? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit

[gwt-contrib] Re: RFC: Breaking change to CellTable

2011-07-10 Thread karthik reddy
John/GWT Team As I understand, one of the important assumptions behind cell widgets(CellTable, CellTree etc) is that innerHTML is fundamentally faster than DOM manipulation. * We've found that on some browsers, DOM manipulation is getting faster than innerHTML (due to the cost of actually

Yes or No: Will Singleton-izing my Resources offer tangible performance gains??

2011-07-06 Thread karthik reddy
I use my Resources.java (it extends ClientBundle and holds references to images etc) in multiple classes and in each class I would create an instance of it class using GWT.create(Resources.class) Would making this class a singleton offer me tangible performance gains or is it not worth the

Re: When using HistoryTokens with Activities and Places can you remove the (:) colon?

2011-07-01 Thread karthik reddy
You might find the following links helpful: http://stackoverflow.com/questions/5000520/gwt-replace-abstractplacehistorymapper-with-a-custom-mapper-using-deferred-bindi http://stackoverflow.com/questions/5579916/how-to-change-gwt-place-url-from-the-default-to -- You received this message

Re: Disable/Enable CSS obfuscating in gwt.xml ?

2011-06-25 Thread karthik reddy
Not to revive a old thread but wanted to add some relevant info to the discussion. In the case of set-configuration-property name=CssResource.style value=pretty/, the code that generates the aforementioned very long class names is present in the computeObfuscatedNames method of

Re: customize animation effect of Tree/TreeItem

2011-06-22 Thread karthik reddy
Any pointers on this would be much appreciated.. -- 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/-/gWRFf4r4Oq8J. To post to this group, send email

customize animation effect of Tree/TreeItem

2011-06-21 Thread karthik reddy
I went through the code in Tree/TreeItem and seems like the animation duration( I think this governs how slow/fast the the tree collapses with the slide down effect) is hard-coded and set to private: private static final int ANIMATION_DURATION = 200; Hoping against hope: Is there any other

Mixing Autobean with JSONP

2011-05-28 Thread karthik reddy
Can AutoBean used to bind the response of a JSONP request ?? I tried but with no success. For example: JsonpRequestBuilder jsonp = new JsonpRequestBuilder(); jsonp.requestObject(url, new AsyncCallbackT() { public void onFailure(Throwable throwable) { }

Is restricting user.agent values gonna improve the speed of hosted mode ?

2011-05-21 Thread karthik reddy
I have modified my module xml file by introducing the following, with the expectation that it would speed up my hosted mode: set-property name=user.agent value=gecko1_8 / No luck, though. My hosted mode is still as sluggish as before. Any opinions ? -- You received this message

Re: Is restricting user.agent values gonna improve the speed of hosted mode ?

2011-05-21 Thread karthik reddy
It decreases my compile-time significantly (rightly so because of the decreased permutations) but not the speed of the hosted mode. -- 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: Is restricting user.agent values gonna improve the speed of hosted mode ?

2011-05-21 Thread karthik reddy
It decreases my compile-time significantly ( because of the decreased permutations) but does not improve the speed of the hosted mode. The hosted mode is as sluggish as before. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post

Re: How to speed up Hosted mode

2011-05-19 Thread Karthik Abram
As bizzare as it sounds, try IE 9 - seems to run faster than FF in dev mode. On Tue, Apr 19, 2011 at 8:06 PM, Aladdin alaamu...@gmail.com wrote: I know that you can  use cluster to compile your app So , 2000$ can build you 6 diskless computers :) Look that up in youtube or google On Apr

Re: GWT 2.1 MVP Multiple activities clarification help

2011-05-19 Thread karthik reddy
I have ran into a interesting situation using Mauro's example[A hit tip to Mauro in helping the community to navigate the waters of Activities and Places]: Lets say, I first access http://95.110.143.4/layoutmvp/layoutmvp.html#inbox:list As expected, it shows me the Inbox. Then, lets say, I

Grid + UiBinder : Setting row level styles

2011-05-03 Thread karthik reddy
... . g:row addStyleNames=OddNumberRow /g:row g:row addStyleNames=EvenNumberRow /g:row ... ... The above approach is not working. In other words, the tr elements in the generated html do not have any class names at all. A back up option would be

Re: Grid + UiBinder : Setting row level styles

2011-05-03 Thread karthik reddy
I tried both approaches: g:row styleName=OddNumberRow and g:row class={OddNumberRow} using ui:style declarations for the latter. Neither of them work. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group,

Re: Grid + UiBinder : Setting row level styles

2011-05-03 Thread karthik reddy
I tried both approaches: g:row styleName=OddNumberRow and g:row class={style.OddNumberRow} using ui:style declarations for the latter. Neither of them work. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this

Radiobuttons and UiBinder

2011-04-21 Thread karthik reddy
Lets say I have three radio buttons belonging to a group. Upon some event, I would like to retrieve the value of the radio button selected in my UiBInder class. One possible approach, I guess, is to declare a ui:field for each of the radio buttons(like in the example below) and thus retrieve

Re: KeyPressevent is being called twice for suggest box - Please help!!!!!

2011-04-19 Thread karthik reddy
Is the real culprit for this behavior the following lines in the addEventsToTextBox() method of SuggestBox class: *delegateEvent(SuggestBox.this, event);* I think there are about 4 occurrences of this in the addEventsToTextBox() method:

Re: seemingly misleading verbiage in the documentation...

2011-03-31 Thread karthik reddy
Any thoughts on this would be much appreciated. I am trying to validate my understanding of JSONParser class and also highlight the misleading verbiage in the documentation. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this

Re: seemingly misleading verbiage in the documentation...

2011-03-31 Thread karthik reddy
Thanks Thomas. In fact, I did look at the javadoc, and even the javadoc has kinda ambiguous verbiage . More precisely, parseStrict's description is right on : Evaluates a JSON string and returns its JSONValue representation. Where possible, the browser's JSON.parse function is used. For older

parseLenient and parseStrict on newer browsers [was Re: seemingly misleading verbiage in the documentation...]

2011-03-31 Thread karthik reddy
parseLenient *only* uses eval(), not only as a fallback. . I went into the source code and took a look at the parseLenient method. You are correct. parseLenient always uses eval(). The following is the code snippet that confirmed this fact for me:

seemingly misleading verbiage in the documentation...

2011-03-30 Thread karthik reddy
There seems to be some mis-leading verbiage at the link http://code.google.com/webtoolkit/doc/latest/tutorial/JSON.html : Another technique for a converting a JSON string into something you can work with is to use the static JSONParser.parse(String) method. GWT contains a full set of JSON

Unable to run GWTP app after migration to 2.2

2011-02-22 Thread Karthik
I need a solution to the following problem : I am running eclispe 3.6, GWT 2.2, Guice 3.0 rc2, gin 10 r137 and gwt- p 0.5, the code compiles fine but when I try to run the app i end up with the following error : 13:40:24.062 [ERROR] [gwtphplacesample] Failed to create an instance of

GWT RPC Serialization - circular references not allowed?

2011-02-17 Thread Karthik Abram
I'm serializing to the client from Java using the standard GWT RPC mechanism (using Async Service, not the factory introduced in 2.1). I'm seeing an issue with deserialization at the client when my serialized object has circular references. This is what I see: Serializing a Result object that has

Re: has this patch made it to 2.2

2011-02-15 Thread karthik reddy
thanks Thomas. Just wondering: this is a vary valid case and the patch seems to have been submitted by you well ahead of the 2.2 release(thanks to you once again). Are you aware of any reason why this has not made it to the 2.2 release. -- You received this message because you are

Re: has this patch made it to 2.2

2011-02-15 Thread karthik reddy
thanks for the clarification David. -- 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

Replace AbstractPlaceHistoryMapper with a custom mapper using deferred binding

2011-02-14 Thread karthik reddy
Looks like the class that is generated for PlaceHistoryMapper is hard-coded to used AbstractPlaceHistoryMapper as the super class. So, I am trying to work around this by trying to replace this AbstractPlaceHistoryMapper with a custom mapper of mine using deferred binding . I am using the

has this patch made it to 2.2

2011-02-14 Thread karthik reddy
http://gwt-code-reviews.appspot.com/1316801/patch/9001/10001 -- 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

Re: Is there a way to retrieve the prefix of a Place

2011-02-11 Thread karthik reddy
I just discovered the following method PrefixAndToken *getPrefixAndToken*(Place newPlace) in the class AbstractPlaceHistoryMapper but the method is declared abstract and hence not implemented. So, it does not help ; but this is the kind of functionality I am looking for. Any thoughts ?

Is there a way to retrieve the prefix of a Place

2011-02-10 Thread karthik reddy
I was wondering if there is a way to retrieve the prefix corresponding to a place ??? For example lets say I have the following Place class: public class HomePlace extends Place { @Prefix(/home) public static class Tokenizer implements PlaceTokenizerHomePlace { @Override public HomePlace

GWT DevMode : logging to a log file

2011-02-08 Thread karthik reddy
By default all the GWT.log(.) statements log to the console . (this is not desirable for me because there is no way for me to do a Clear on the logs periodically and that affects my capability to debug). So, I am trying to direct all my GWT.log(...) messages to a file which I can

Re: GWT DevMode : logging to a log file

2011-02-08 Thread karthik reddy
I just took a look at the documentation at http://code.google.com/webtoolkit/doc/latest/DevGuideLogging.html and it seems like FileHandler is not supported . There is a line in the documentation that seems to indicate this: The following classes are not emulated at all: ErrorManager and

Re: Is there a way to avoid the colon(:) sign in a Place's prefix ???

2011-01-20 Thread karthik . eleven
Thanks Martin for opening an issue. Also, please feel to share with us any code related to implementing your own PlaceHistoryMapper, Tokenizers , to circumvent this issue. This is an issue a lot of developers would eventually face . I would encourage developers to star this issue in the

Re: Attn::Unix Administrator Requirement in Framingham, MA::Please respond back at di...@abacuscs.com::

2011-01-20 Thread karthik . eleven
Doesn't Report abuse automatically take care of such spam ?? -- 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

Re: using new 2.1.1rc RequestFactory AutoBean in RESTful Architecture

2011-01-15 Thread karthik reddy
very valid questions. A good number of gwt developers at some stage will face similar questions. I would appreciate if someone could share their experiences and findings pertaining to the questions zixzigma has brought up. -- You received this message because you are subscribed to the

RequestFactory integration with Activities and Places

2011-01-11 Thread karthik reddy
Is there any nice post (blog, articles etc) that sheds some light on integrating RequestFactory with Activities, Places, Eventbus. Even code snippets/samples would be fine. thanks -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post

Re: GWT 2.1 MVP Multiple activities clarification help

2011-01-06 Thread karthik reddy
Hi Mauro Your example is turning out to be very helpful. I ran into one issue I thought I might communicate to you. When you click the Mail activites button, and then select the first entry of the mail list (i.e., viva...@seddiamlorem.ca) the details are populated in Mail Details. Similary if

Re: Is there a way to avoid the colon(:) sign in a Place's prefix ???

2011-01-02 Thread karthik reddy
I do not want to re-invent the wheel here if someone has already customized the behavior of the prefix by implementing the PlaceHistoryMapper interface, as Thomas mentioned. If someone has already done it , would appreciate if you could provide the code samples. Thomas I see that you have

Is there a way to avoid the colon(:) sign in a Place's prefix ???

2011-01-01 Thread karthik reddy
.#prefix:token Vs ...#prefix I am trying to achieve the latter. Is there a way to do it??? Making prefix empty using @Prefix() does not seem to cut it. FYI: The new google groups UI which seems to have to been built using GWT, is

Activity automatically stopping

2010-12-29 Thread karthik reddy
I am developing a sample application using Activities and Places, based on GWT team's basic Hello, goodbye example. I have a first place(the default place) and a second place. On user click, the place is changed from first place to the second place and the activity corresponding to the second

GWT 2.1.1 , HelloMVP (Google provide example illustrating Activities Places) : Compile error. Stacktrace enclosed.

2010-12-20 Thread karthik reddy
I am trying to compile the HelloMVP application available at http://code.google.com/webtoolkit/doc/trunk/DevGuideMvpActivitiesAndPlaces.html . I did not make any changes to the code and just tried to compile it and was met with the following error. It basically says it cannot resolve

GWT 2.1.1 , HelloMVP (Google provided example illustrating Activities Places) : Compile error. Stacktrace enclosed.

2010-12-20 Thread karthik reddy
I am trying to compile the HelloMVP application available at http://code.google.com/webtoolkit/doc/trunk/DevGuideMvpActivitiesAndPlaces.html . I did not make any changes to the code and just tried to compile it and was met with the following error. It basically says it cannot resolve

Re: need UIBinder example using multiple composite

2010-12-16 Thread karthik reddy
this might help http://davidmaddison.blogspot.com/2010/03/building-gwt-declarative-interface.html -- 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

RequestFactory without creating proxies? Anyone else reminded of J2EE early days?

2010-12-14 Thread Karthik Abram
We have a significant sized app built using GWT 2.0 and we have simple Command pattern based abstraction for sending entities back and forth between the server and client. The new RequestFactory while interesting seems to require too much scaffolding interfaces and classes. - Why should I create

Re: RequestFactory without creating proxies? Anyone else reminded of J2EE early days?

2010-12-14 Thread Karthik Abram
Thomas, Thanks for your response. Here are a few follow ups: 1) The idea of forcing separation between client and server code so that GWT can generate client code is perhaps too restrictive. We have a lot of getter methods with intelligence or decoration of the returned value. Currently, we

Re: [gwt-contrib] New Google Groups apparent with GWT ?

2010-12-14 Thread karthik reddy
Are there any code samples/documentation of integrating Closure Library widgets (like rich text editor etc) with GWT. if this integration can be done seamlessly with no performance hit this would help GWT developers get the best of both worlds(GWT and Closure Library) --

Re: Using Google Closure Library within GWT JSNI .....

2010-12-10 Thread karthik reddy
http://closure-library.googlecode.com/svn/docs/index.html this link shows an exhaustive list of UI elements available within closure library -- 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: New Google groups in GWT

2010-12-09 Thread karthik reddy
..You can expect to see a steady stream of announcements regarding Google products being written or rewritten in GWT. good to hear. GWT has the community, the tools and now the adoption. If you build they will come. Indeed. BTW, I read

Using Google Closure Library within GWT JSNI .....

2010-12-09 Thread karthik reddy
Given than closure library has a plethora of UI elements(all the nice UI elements one could see across various google products like Google docs, maps, gmail etc), would it not be worthwhile to use them in GWT using JSNI. Has anyone tried this ?? Any performance implications ??? thanks --

Re: Google Plugin In Spring Source Toolkit seems to be wipping out the project on run.

2010-11-19 Thread Karthik Ramachandran
. Karthik On Thu, Nov 18, 2010 at 7:13 PM, Chris crehb...@gmail.com wrote: On Nov 18, 6:03 pm, Rajeev Dayal rda...@google.com wrote: Hey Chris, A few questions: -what operating system are you on? -I noticed that you have the gwt-user.jar and gwt-dev.jar explicitly on your build

Google Plugin In Spring Source Toolkit seems to be wipping out the project on run.

2010-11-18 Thread Karthik
Hi all, I playing around with STS, Roo, Maven and GWT. When I go to run a Roo project from inside STS, STS seems to wipe out the entire project. Anyone else playing with this particular combo of technologies and running into issues? Karthik -- You received this message because you

Re: Does anyone know of some example code to traverse the DOM tree in GWT?

2010-11-18 Thread Karthik Ramachandran
In therory you could use the Javascript native mode and manipulate the dom. On Thu, Nov 18, 2010 at 10:26 AM, Blackberet ramonjsanti...@gmail.comwrote: I really need a pure GWT solution. I was hoping someone would point me out to a code example, maybe in the GWT source tree. On Nov 17, 8:37

Re: Insertion cursor disappears on IE RichTextArea before I can grab it

2010-08-11 Thread Karthik
Hi Kozuru, I have the simiar problem and I'm a newbie, could you please gimme the NativePreviewHandler fix for this. Thank You. -Karthik -- 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

Re: Anyaware of Hadoop/HBase/BigTables

2010-03-26 Thread Karthik K
Is there anything specific you wanted to know ? On Thu, Mar 25, 2010 at 8:56 PM, sridevi macherla sridevimache...@gmail.com wrote: Hi, Anyone aware of Hadoop/HBase/BigTables, did anyone working on this modules. please let me know. Thanks Sri -- You received this message because you

Re: GWT 2.0.3 + Maven2 + Eclipse

2010-03-26 Thread Karthik Abram
Use the gwt-maven-plugin version 1.2-SNAPSHOT to have your project work with GWT 2.x -- 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,

Re: Anyaware of Hadoop/HBase/BigTables

2010-03-26 Thread Karthik K
On Fri, Mar 26, 2010 at 1:35 AM, sridevi macherla sridevimache...@gmail.com wrote: Hi Karthik, I would like to know how to implement or the usage of BigTable From an academic perspective, the paper would give a good idea and of course, app engine being the closest in terms of access

gwt 2.0.3 - Uibinder for Grid

2010-03-20 Thread Karthik K
I am looking for a uibinder example for the grid element . Searched through the archives before and came across a solution involving , g:HTMLPanel table ... /table /g:HTMLPanel. Is there a cleaner / out-of-the-box solution towards that other than hardcoding html by ourselves ? -- You

Re: frustrated with Google Eclipse Plugin and Maven gwt-maven-plugin integration

2009-12-02 Thread Karthik Abram
I don't have it working with the Google eclipse plugin ... but I did get it working where compilation is no slower than the Google Eclipse plugin and debugging is just as fast (using maven compile target and java app launch config for debugging). I did have to get gwt-maven-plugin 1.2-SNAPSHOT to

GWT 2.0.0 rc2 - failing to compile annotation (when used with Maven plugin 1.2-SNAPSHOT)

2009-12-01 Thread Karthik Abram
I have a class in the client subpackage (lets call it Foo) that has an annotation (say @Bar) that is in a client.gwt.rpc sub-package. This construct compiles fine with GWT eclipse plugin (1.2 rc2, eclipse galileo) but when I compile using the maven plugin, I get a ClassNotFoundException in the

Re: EXCEPTION_ACCESS_VIOLATION in HotSpot Virtual Machine:

2009-12-01 Thread Karthik Abram
I had the same issue with GWT 2.0.0-rc1 and rc2 with JDK1.5 update 22. I switched to JDK 1.6 and the problem went away. I only had this happen in development mode, and consistently so. On Tue, Dec 1, 2009 at 1:47 PM, Bruce Petro brucepe...@gmail.com wrote: I'm hitting the error shown below in my

Hosted Browser problem

2009-08-21 Thread Karthik
I am using GWT 1.6 with Eclipse 3.4.0 i am getting this wired issue. I tired to do the workaround mentioned in http://groups.google.com/group/Google-Web-Toolkit/browse_thread/thread/8811c8d9fb471193 but the problem is not resolved. [SPAM] fields=Accept: image/gif, image/x-xbitmap, image/jpeg,

getting 404 error when I call a RPC service from an inherited module... local module's path seems to always appended to all the RPC services

2009-03-20 Thread Karthik Karuppannan
'svcA' from module B, somehow the path shows as /com.packB.svcA where as I expected /com.packA.svcA and this leads to HTTP 404 error for RPC service call. Am I missing something fundamental? Hope my question is clear. ~ regards, Karthik Karuppannan Java Developer, EPA - Endagered Species

issues when reusing HTML mock-ups with external css and third-party styles like ext-all.css from ExtJS,

2009-02-23 Thread Karthik Karuppannan
by googling. Any help is highly appreciated. ~ regards, Karthik Karuppannan --~--~-~--~~~---~--~~ 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

  1   2   >