serialization of classes that require non-default constructors and extending these classes

2014-01-23 Thread basinilya
Suppose, there's a 3rd party class: public class A { private int v; public A(int v) { this.v = v; } public int v() { return v; } } If you want it to deserialize on client, you usually write a CustomFieldSerializer that calls

Re: Super Dev Mode in 2.6rc4

2014-01-23 Thread MacWiz
Thanks for the hint. I was able to get this working using a specific IP address (vs. localhost) with the devModeUrlWhitelistRegexp configuration property. On Wednesday, January 22, 2014 2:36:03 PM UTC-7, Jens wrote: > > They have enabled the devModeRedirectEnabled configuration property by >

2 instances of same autobean getting updated simultaneously

2014-01-23 Thread aditi
Have an autobean created after deserliazing the json response. Then I save it in two different files to the classmembers with getter and setter Class A MyBean bean = null; public MyBean getBean() { this.MyBean; } public void setBean(MyBean beanVal) { this.MyBean = beanVal; } Similarly in

problem with asynchronous call

2014-01-23 Thread Sara
I have a problem with RPC call in GWT. I am a beginner. can any one help me to solve this. below is an example code snippet: I have four columns in my UI with effdate and enddate as column header. The values are not displaying in order. The first column value is displaying in 3rd column. most

Re: Introducing GWT-Tour 0.1

2014-01-23 Thread Alain Ekambi
@Doright Yes that s the goal of setNextOnTargetClick. I will investigate and get back to you. cheers, Alain 2014/1/23 doright > thanks Alain, that's the font sorted. > > FYI, I can't get the " step.setNextTargetOnClick(true);" feature to work. > > Am I right in thinking, that if a user presses

Re: StorageMap.StorageEntryIterator#remove() - Issues with order?

2014-01-23 Thread Andreas Kohn
Hi, there we go: https://code.google.com/p/google-web-toolkit/issues/detail?id=8544 -- Andreas On Thu, Jan 16, 2014 at 7:14 PM, Jens wrote: > Should I open an issue for this? >> > > Sure. I don't think the current implementation will change in the near > future (as it seems to work in all bro

Re: Introducing GWT-Tour 0.1

2014-01-23 Thread doright
thanks Alain, that's the font sorted. FYI, I can't get the " step.setNextTargetOnClick(true);" feature to work. Am I right in thinking, that if a user presses on a button, with the same DOM id as the current step, its supposed to take us to the next step in the tour, when we have this option se

Re: Is it the best practice to put the loadingMessage code in the prepareFromRequest method in (GWTP)

2014-01-23 Thread Tom
0 down vote accept I solved the problem, just put the callingMethod inside onReset, then it will be fine cos prepareFromRequest was called too early that some how other widget has not been bound yet & that causing the problem. This should work in all browser. String item=""; @Override publ

Re: Russian GWT tutorial

2014-01-23 Thread Andrey
Ссылка не работает((( среда, 5 ноября 2008 г., 14:01:20 UTC+4 пользователь GoCha написал: > > Русское ководство GWT > http://gocha.org/index.php?option=com_content&task=view&id=16&Itemid=28 -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.

Re: How to adjust a GWT frame height to get no scrollbars (100% of body content)?

2014-01-23 Thread marian lux
My "main" panel my FrameViewGwtImpl.java is a LayoutPanel. If I remove the scrollpanel from FrameViewGwtImpl.java and set the LayoutPanel height to e.g. 1000px, the scrollbars should appear (because this is more than the client-height) like "working_mobile_scroll.html". Additional info: in m

Re: Exception: java.lang.NoClassDefFoundError: com/google/gwt/dev/DevMode

2014-01-23 Thread saranya
Thanks Jen. problem with my plugin. Finally it's working. On Tuesday, January 21, 2014 2:54:06 PM UTC+5:30, Jens wrote: > > Looks like you do not have gwt-dev.jar on classpath. > > -- J. > -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.

Not able to get reference to class file generated in "target" folder of Maven project in GWT

2014-01-23 Thread Akshay Lokur
Hi, Can anyone make any attempt to answer this question: Not able to get reference to class file generated in "target" folder of Maven project in GWT: http://stackoverflow.com/q/21286677/1471921?sem=2 Thanks, Akshay -- You received this message because you are subscribed to the Google Group

Is it the best practice to put the loadingMessage code in the prepareFromRequest method in (GWTP)

2014-01-23 Thread Tom
I want to check the data at the time the page got loaded. I also want to put the loading indicator popup when checking data so that user will know that the page is loading data. Look at this code: @Override public void prepareFromRequest(PlaceRequest request){ super.prepareFromReque