Re: GWT - The response could not be deserialized

2014-04-08 Thread Boris Lenzinger
May be your returned object is null ? 2014-04-08 22:31 GMT+02:00 Pippo Baudone karm...@tin.it: I've tried it but i have the same problem. Try wrapping you data objects in POJO's and not passing your data as raw arrays and see if that helps. -Mike On 04/08/2014 03:33 PM, Pippo Baudone

Re: gwt tomcat unix doesn't work

2014-02-22 Thread Boris Lenzinger
Hi, Can you post the error you get ? It would also be good to have the output of java -version which java Do you have any gcj installed ? Could you also post which distribution of linux you are using and which version ? Thank you. 2014-02-22 8:17 GMT+01:00 fedex shashankgris...@gmail.com:

Re: Compile Error after switching to 2.6 in first compile run

2014-02-19 Thread Boris Lenzinger
May be the algorithm to compute the compilation order has changed. Can you get the sequence of compilation in 2.5.1 and 2.6.0 so you can currently hard code the build sequence (and continue to use 2.6). Then you can post a bug report. 2014-02-19 9:04 GMT+01:00 Jan Thewes janthe...@gmail.com: I

Re: Compile Error after switching to 2.6 in first compile run

2014-02-14 Thread Boris Lenzinger
There is this error in your stack : [ERROR] Errors in 'file:/Users/xgadjth/sandboxes/b21_gwt-03.03.00/render/source/de/gad/gfw/web/gui/render/toolbar/ToolBar.java' [ERROR] Line 116: The method addStyleName(String) is undefined for the type AutoHidePreventMenu [ERROR] Line 123: The

Re: Compile Error after switching to 2.6 in first compile run

2014-02-11 Thread Boris Lenzinger
I would say that the order of compilation is not the one you expect. The error Line 23: No source code is available for type de.gad.gfw.web.navigator.menu.model.MenuElement; did you forget to inherit a required module? Errors in

Re: GWT 2.6.0 / Java 6: UnsupportedClassVersionError in DevMode

2014-02-11 Thread Boris Lenzinger
And which is the default version of java in your shell ? may be eclipse is running with JRE 7 and then compiling with JDK 7. 2014-02-11 18:01 GMT+01:00 Timo Hoepfner timo.hoepf...@gmail.com: Hi Boris, the project is configured to use Java 6 and problem occurs when the DevMode JRE is also

Re: GWT 2.6.0 / Java 6: UnsupportedClassVersionError in DevMode

2014-02-10 Thread Boris Lenzinger
Hi, This is because you are executing the code with a JRE that is not compatible with this class version. Probably you are using a 1.6 jre and the class is compatible from 1.7. You have to recompile the code with a 1.6 JDK or you have to change the JRE that is executing the code to a 1.7. If you

Re: why is my class not serializable?

2013-05-14 Thread Boris Lenzinger
Can you post the code of the class and the message of the exception please ? It would help to understand the problem i think. Boris Le 14 mai 2013 17:09, Dennis Haupt d.haup...@gmail.com a écrit : i deactivated the rpc blacklist the class has a default contructor and no final fields is it

Re: why is my class not serializable?

2013-05-14 Thread Boris Lenzinger
Did you try by just including step by step the class ? I mean just add an empty class and check if it is working. I know you made a lot of classes so you are skilled. So I guess this is a silly problem. Perhaps restarting from scratch may highlight the issue. Le 14 mai 2013 17:24, Dennis Haupt

Re: why is my class not serializable?

2013-05-14 Thread Boris Lenzinger
Consider also the interface other than serializable. It must be somerhung around those things... Le 14 mai 2013 17:31, Dennis Haupt d.haup...@gmail.com a écrit : i'm removing fields step by step now (since it has only 3) 2013/5/14 Boris Lenzinger boris.lenzin...@gmail.com Did you try

Re: why is my class not serializable?

2013-05-14 Thread Boris Lenzinger
fields fixed the problem. why doesn't the gwt complain about the fields at all, if they are the problem? 2013/5/14 Boris Lenzinger boris.lenzin...@gmail.com Consider also the interface other than serializable. It must be somerhung around those things... Le 14 mai 2013 17:31, Dennis Haupt

Re: why is my class not serializable?

2013-05-14 Thread Boris Lenzinger
...@gmail.com yes, the compiler can access them. i use the classes in an rpc call 2013/5/14 Boris Lenzinger boris.lenzin...@gmail.com Are the type of your fields available on the client side ? Le 14 mai 2013 17:40, Dennis Haupt d.haup...@gmail.com a écrit : the package the problematic class

Re: why is my class not serializable?

2013-05-14 Thread Boris Lenzinger
? 2013/5/14 Dennis Haupt d.haup...@gmail.com yes, the compiler can access them. i use the classes in an rpc call 2013/5/14 Boris Lenzinger boris.lenzin...@gmail.com Are the type of your fields available on the client side ? Le 14 mai 2013 17:40, Dennis Haupt d.haup...@gmail.com a écrit

Re: New To GWT: Objects in composite object not aligned correctly

2013-04-27 Thread Boris Lenzinger
Hello, May be try to use UIBinder and use HTMLPanel so you can have a good control over the HTML that is generated. That is what I'm doing since Horizontal and Vertical panels are built with table. Using HTMLPanel with table gives you a cell per cell control. Boris 2013/4/25 Chris Brown

Re: DatePicker next/prev month events

2012-04-06 Thread Boris Lenzinger
Hi, Create your custom class in the same package as google and you should workaround the IllegalAccessException (since method addMonth is protected). Boris Le 6 avril 2012 09:00, Nikola Markovic dev.mercur...@gmail.com a écrit : Bump, still stuck in here :( p.s. Thinking of making my own

Re: 2.4 RPC failure

2012-03-30 Thread Boris Lenzinger
Hi, I have written an application and few month ago I got this error message : com.google.gwt.user.client.rpc.StatusCodeException: 0 At last I found an explanation (for my case which might not worth for yours but can give you ideas maybe). I am developing my app on my laptop. So at home I have a

Re: Are handlers kept registered on PopupPanel when we call hide() on it ?

2012-02-07 Thread Boris Lenzinger
Thank you for your answer Thomas. I'll check this and will come back with other questions if I still don't understand :-) Boris 2012/2/6 Thomas Broyer t.bro...@gmail.com It looks like the issue is not really the PopupPanel but rather the widget(s) you add inside: if you reuse the same widget

Are handlers kept registered on PopupPanel when we call hide() on it ?

2012-02-06 Thread Boris Lenzinger
Hi, I was wondering how this is working. I made some code where I registered some event handlers on a PopupPanel so I can keep the data up to date. But when I call hide on this popup panel and recreate a new one, then handlers are registered 2 times and so events are handler 2 times. I was

Re: The import cannot be resolved

2011-09-23 Thread Boris Lenzinger
Hi, Do you use those classes on the client side ? If it the case, it cannot work since you probably don't have any *.gwt.xml in your jar since this code cannot be translated to javascript. Else it is a classpath problem of your running application. Can you describe please how you launch the

Re: Error with Quartz

2011-09-21 Thread Boris Lenzinger
this place ( http://old.nabble.com/java.net---quartz-users-f13536.html ) is probably a better choice to post your question. Quartz is not related to GWT. The above site is dedidated to quartz so may be you would get an answer very quickly. 2011/9/21 andre_guitar7 andreg...@gmail.com I'm

Re: Debug in client side

2011-08-18 Thread Boris Lenzinger
Just to be sure : you are starting the host mode in debug and connect to it through the http://127.0.0.1:9997/yourApp address ? Another potential reason is you have error(s) before reaching your breakpoints and code execution stops. Could you describe more how you start your application with

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

2011-08-01 Thread Boris Lenzinger
the following search on Google gwt slider returns some interesting results. You should find what you are looking for. 2011/8/1 Deepak Singh deepaksingh...@gmail.com Yes. So can we expect some features to be made open source / included in GWT by google ? At lease i need this slider component

Re: TextBox filter

2011-05-20 Thread Boris Lenzinger
Hi, Is your question about the number of characters or do you want to have a limited set of characters ? Boris 2011/5/20 Issam boualem.is...@gmail.com Hi all, Anyone has an idea about limiting the keyboard entries on a textBox (creating a filter for example) or if it exists on GWT ?

Re: TextBox filter

2011-05-20 Thread Boris Lenzinger
, My question is about the type of entries (I would like that TextBox accepts just interger (int) ) On 20 mai, 14:14, Boris Lenzinger boris.lenzin...@gmail.com wrote: Hi, Is your question about the number of characters or do you want to have a limited set of characters ? Boris

Re: MouseMove Events for CellTable / FlexTable

2011-05-12 Thread Boris Lenzinger
Hi, I had found something like about this on the internet. The following code is some hint on how to do this. Boris class Table extends FlexTable { private String headerStyle = nostyle; public Table(TableDataSource source, String stylePrefix) { super(); this.setCellPadding(1);

Re: GWT Designer - full version

2011-03-10 Thread Boris Lenzinger
Can you give the URL where you found this text please ? Boris 2011/3/10 Eve ng8...@gmail.com I understand the update site is to install the plug-in for Eclipse. However, on the GWT download page (see text quoted below), it mentions there is a GWT Designer full version which is a standalone?

Re: GWT Designer - full version

2011-03-10 Thread Boris Lenzinger
there is no standalone version as java editor that is not based on Eclipse (I'm pretty sure). So you have to use Eclipse with the plugin. Boris 2011/3/10 Juan Pablo Gardella gardellajuanpa...@gmail.com http://code.google.com/webtoolkit/tools/gwtdesigner/index.html 2011/3/10 Boris Lenzinger boris.lenzin

Re: How can I move position of tab headers ?

2011-01-17 Thread Boris Lenzinger
A simple solution : margin-left: 100px; will make the job. Thank you for your answer ! Boris 2011/1/16 Y2i yur...@gmail.com This recent discussion may help

How can I move position of tab headers ?

2011-01-16 Thread Boris Lenzinger
Hello, I would like to display the tab header more on the right. Currently they are fixed on the left side with a css attribute left that is set to 0. The code that is generated by GWT is the following : div class=gwt-TabLayoutPanelTabs style=left: 0px; right: 0px; bottom: 0px; inside this,

Re: Gwt module sometime not loaded, Only after clicking refresh button it work ?

2011-01-07 Thread Boris Lenzinger
Hi, Have you tried to set some breakpoints using Firebug ? it could help you to understand what's going on. Boris 2011/1/7 cyclingthealps denniswegew...@googlemail.com Hi I am also having this problem. Does not make a difference if I use Chrome FF or IE. Using gwt 2.1 as well. I really

Re: GIN MVP 2.1 Example

2010-12-20 Thread Boris Lenzinger
Hi, Check this : http://code.google.com/p/google-web-toolkit/downloads/detail?name=Tutorial-Contacts.zipcan=2q= It is probably what you are looking for. Boris 2010/12/20 Matthew Hill matt2...@gmail.com Thanks. I think I understand it a bit better now but an example of it being used in MVP

Re: How to install GWT Designer

2010-12-08 Thread Boris Lenzinger
Check this : http://code.google.com/webtoolkit/tools/download-gwtdesigner.html This page contains the URLs to supply for installing a new soft under Eclipse from a site. To install a software with this method, check this : http://www.eclipse.org/modeling/emf/updates The example is for eclipse

Re: MVP docs/tutorials/examples

2010-12-07 Thread Boris Lenzinger
Hi, Did you check this ? http://code.google.com/p/gwt-gae-book . It was announced few days ago by its writer and it seems to be an excellent work on this topic... Boris 2010/12/7 Andrey mino...@gmail.com Hello, We are going to use GWT 2.1 MVP in our projects. The problem is that there

Re: UiBinding at run time

2010-11-15 Thread Boris Lenzinger
Hi, I have tried your demo and this is quite impressive ! When do you think you will release something that we can test and use intensively ? This would be a gread addition to GWT if it was added to the core. Congratulations ! Boris 2010/11/12 TedM tedkar...@msn.com Hi GWT Community, I

Re: UiBinding at run time

2010-11-15 Thread Boris Lenzinger
the design to their vision. Do you know how I can get in contact with a gwt core person? On Nov 15, 3:38 am, Boris Lenzinger boris.lenzin...@gmail.com wrote: Hi, I have tried your demo and this is quite impressive ! When do you think you will release something that we can test and use

Re: Using Rome in a GWT application

2010-10-19 Thread Boris Lenzinger
\Eyal\workspace \BooksApp\war\WEB-INF\lib\rome\rome-1.0.jar;C:\installers\software development\eclipse-jee-galileo-SR1-win32\eclipse\plugins \com.google.appengine.eclipse.sdkbundle. 1.3.7_1.3.7.v201008311405\appengine-java-sdk-1.3.7\lib\agent\appengine- agent.jar On Oct 18, 6:41 pm, Boris

Re: Using Rome in a GWT application

2010-10-18 Thread Boris Lenzinger
Hi, could you give more precisions on how you are setting up your runtime environment please ? Are you running from Eclipse or are you deploying the war file to an application server ? Have you checked your classpath at runtime ? (a System.out.println on the java.class.path variable could be

Re: Calling java from external javascript

2010-10-06 Thread Boris Lenzinger
, Daniel Kurka kurka.dan...@googlemail.com wrote: if you are in javascript its not $wnd its just window :) 2010/10/5 Boris Lenzinger boris.lenzin...@gmail.com Sorry for the javascript : there is a mistake : variable name is not buttonnode but button at return step of the method

Re: Calling java from external javascript

2010-10-06 Thread Boris Lenzinger
Thank you for your suggestions. At last I found what was wrong (well I found a way to make it work :-) ) First, the call to the method in the onclick was not good. It was defining an inline function instead of calling directly the variable that was exported by the MyUtilityClass. button.onclick

Re: Calling java from external javascript

2010-10-06 Thread Boris Lenzinger
loads, the JavaScript method is defined and is callable from outside of the GWT application. On Oct 6, 4:51 pm, Boris Lenzinger boris.lenzin...@gmail.com wrote: Thank you for your suggestions. At last I found what was wrong (well I found a way to make it work :-) ) First, the call

Calling java from external javascript

2010-10-05 Thread Boris Lenzinger
Hi, I'm currently trying to call a java method from a javascript that lives outside of the generated javascript from GWT. What I want to do is the following : make the gwt component communicates with a javascript component (in both ways). I have to say that I don't know at all javascript..

Re: Calling java from external javascript

2010-10-05 Thread Boris Lenzinger
Sorry for the javascript : there is a mistake : variable name is not buttonnode but button at return step of the method... Anyway the problem still stands ;-) Boris 2010/10/5 Boris Lenzinger boris.lenzin...@gmail.com Hi, I'm currently trying to call a java method from a javascript that lives

Re: Problem with GWT Google-Maps-API 1.1 and IE 6

2010-10-01 Thread Boris Lenzinger
/dmc David Chandler Developer Programs Engineer, Google Web Toolkit On Sep 30, 3:26 am, Boris Lenzinger boris.lenzin...@gmail.com wrote: Hi everybody, I'm currently facing a blocking problem when using GWT google map api (version 1.1.0) with IE 6. GWT version used is 2.0.3

Re: Problem with GWT Google-Maps-API 1.1 and IE 6

2010-10-01 Thread Boris Lenzinger
Chandler Developer Programs Engineer, Google Web Toolkit On Sep 30, 3:26 am, Boris Lenzinger boris.lenzin...@gmail.com wrote: Hi everybody, I'm currently facing a blocking problem when using GWT google map api (version 1.1.0) with IE 6. GWT version used is 2.0.3. Here is the context : I

Problem with GWT Google-Maps-API 1.1 and IE 6

2010-09-30 Thread Boris Lenzinger
Hi everybody, I'm currently facing a blocking problem when using GWT google map api (version 1.1.0) with IE 6. GWT version used is 2.0.3. Here is the context : I have a web interface that displays 2 maps : one on the left that shows a general view and one the right that shows details of a