Gwt 2.2, guice and gin...

2011-02-14 Thread Carlo Alberto Degli Atti
Hello everybody, this morning I had the (bad) idea to update my eclipse environment to use gwt 2.2... (with 2.1 everything was fine)... now I'm experiencing a lot of problems... maybe it's my fault (I'm a new gwt related techs user)... My application is using gin and guice; before this

Re: Gwt 2.2, guice and gin...

2011-02-14 Thread Carlo Alberto Degli Atti
Thomas thanks for your answer... when you say but you then have to recompile it against the GWT 2.2 SDK, you mean I have to take the sources and repackage or simply start a gwt compilation? This error is generated by that or am I missing something else? No implementation for

Re: GWT + Google Maps 1.1 Library Non-Map Uses

2011-01-21 Thread Alberto
Maybe I've to create a new Projection? On 20 Gen, 11:18, Alberto sturialb...@gmail.com wrote: Hi, I'm using Google Maps API to represent some paintings. I've just used MapType object to create a new Map with custom tiles, but Mercator Projection plot my picture continuously in longitude space

GWT + Google Maps 1.1 Library Non-Map Uses

2011-01-20 Thread Alberto
Hi, I'm using Google Maps API to represent some paintings. I've just used MapType object to create a new Map with custom tiles, but Mercator Projection plot my picture continuously in longitude space, due to Mercator Projection. I need a way that let me see my picture only once, like in this

Re: Cannot compile using maven + gwt2.1.1 + mac osx

2010-12-30 Thread Carlo Alberto Degli Atti
Hi Akito, thank you very much for your answer.. The error was simply generated by an old version of the gwt-maven- plugin... I switched it to 2.1.0-1 and the error magically disappeared! Your link to the olamy blogspot turned on the light in my eyes! :-) Thanks again... CA On Dec 29,

Cannot compile using maven + gwt2.1.1 + mac osx

2010-12-29 Thread Carlo Alberto Degli Atti
Hi all, I don't know if this is the right place to post my problem... Anyway, I'm trying to compile a simple GWT project using maven (mvn gwt:compile) on my mac, but it attempts to download -- You received this message because you are subscribed to the Google Groups Google Web Toolkit

Cannot compile using maven + gwt2.1.1 + mac osx

2010-12-29 Thread Carlo Alberto Degli Atti
Hi all, I don't know if this is the right place to post my problem... but I'm trying to compile a simple GWT project (gwt 2.1.1) using maven (mvn gwt:compile) on my mac, but it fails. The reason seems to be that it cannot download this dependency gwt- dev-2.1.1-mac.jar from the repository

Re: Custom Maps

2010-12-23 Thread Alberto
, Alberto sturialb...@gmail.com wrote: Hi everybody! I need an example about the creation of a Custom Map with Google Maps 1.1 Library... I want to create a custom map with my pictures... I was reading Class MapType (http://gwt-google-apis.googlecode.com/svn/javadoc/maps/ 1.1/com/google/gwt

Custom Map and relative Projection

2010-12-23 Thread Alberto
Hi, I want to create my custom Map using Google Maps 1.1 Library. I've a little problem... If I use the Mercator Projection class, my custom map repeat itself continuously in the x space... There's a way to see my map once (without repetitions)? -- You received this message because you are

Re: gwt + spring security

2010-12-22 Thread Alberto
Hi Travis, Is there any way that you can provide examples of your solution? Thanks ! On Dec 21, 8:19 am, Travis Camechis camec...@gmail.com wrote: instead of using that I created my own custom Spring Security SuccessHandlers and Failure Handlers that returns JSON back to the client.  I

Custom Maps

2010-12-22 Thread Alberto
Hi everybody! I need an example about the creation of a Custom Map with Google Maps 1.1 Library... I want to create a custom map with my pictures... I was reading Class MapType (http://gwt-google-apis.googlecode.com/svn/javadoc/maps/ 1.1/com/google/gwt/maps/client/MapType.html) and Class

Re: GWT + Google Maps (JSNI) put a map in a panel

2010-12-18 Thread Alberto
Library doesn't support Maps API v3 I need Custom Panorama... SOMA GURRAM your solution is GREAT! There's only a problem... If I modify your code in this way: package com.test.jsni.client.map.control; import com.google.gwt.core.client.JavaScriptObject; import com.google.gwt.user.client.Window;

Re: GWT + Google Maps (JSNI) put a map in a panel

2010-12-18 Thread Alberto
I need to use js functions in my native method... On 18 Dic, 09:17, Alberto sturialb...@gmail.com wrote: Library doesn't support Maps API v3 I need Custom Panorama... SOMA GURRAM your solution is GREAT! There's only a problem... If I modify your code in this way: package

Pojo-injector makes a little easier the job of moving data using the GWT/RPC mechanism

2010-09-04 Thread Carlo Alberto Degli Atti
versa If you're interested to, you can find more info or download it here: http://code.google.com/p/pojo-injector/ Any feedback, issue or suggestion are really appreciated! Bye, Carlo Alberto -- You received this message because you are subscribed to the Google Groups Google Web Toolkit

Re: How to build a rules-based form controller for a dyn. form in GWT

2010-08-08 Thread Alberto
I have not used it but Tohu (http://jboss.org/tohu) sounds like what you are looking for. Let us know if it works for you On Aug 8, 2:33 am, A.Augustini alessandro.august...@googlemail.com wrote: Hi Sam: For simplicity, I'll provide the open details inline: There are more complete

JAXB GWT How I can use JAXB generated classes on client side

2010-07-14 Thread Alberto Rugnone
Hi all, I have to use classes with jaxb annotation on client side, but GWT compiler refuse to work throwing following exception No source code is available for type javax.xml.namespace.QName No source code is available for type javax.xml.bind.JAXBElementT etc... someone can help me Thank you

How to view the the builtin-sever (jetty) console output in GWT 2.0 ?

2009-12-14 Thread Alberto
I am using Eclipse and the Google Plugin. With the new Development Mode I lost the possibility to view the output from the builtin-server so the errors that I get from my persistence layer are hidden. Is there a way to redirect the server's output to the Eclipse Console or an other way to see

BasicFormatter toggleBold()

2009-06-01 Thread alberto
! Is this possible? cuold someone help me?? thank you! Alberto --~--~-~--~~~---~--~~ 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

Re: Calling a function within a native javascript function

2009-04-04 Thread alberto
Lovich vlov...@gmail.com wrote: You're callling it wrong.  You still needs to call function2 using JSNI because the GWT compiler will mangle the name of function2 but won't realize that it needs to update the reference in the javascript code you are writing. 2009/4/3 alberto alberto.bu

Calling a function within a native javascript function

2009-04-03 Thread alberto
Hi I have theese two native javascript functions: (just a simply example) public native void function1( ) { alert( function2( ) ); } public native int function2( ) { return 9; } It seems that function1 can not see and invoke function2. Is that true? Is there a way to resolve that

Re: RichTextArea javascript

2009-03-29 Thread alberto
Another question: The object gwt RichTextArea when compiled in javascript in wich Dom element is translated?? What is the html Dom object that corrisponds to gwt RichTextArea?? is it html TextArea?? Thank you --~--~-~--~~~---~--~~ You received this message

RichTextArea javascript

2009-03-28 Thread alberto
Hi This is my problem: I create a gwt RichTextArea. Then I add it into a panel. When I run the project the RichtextArea compares correctly. Then I wuold like to get and manage the richTextArea with javascript. the question is how can i get the RichTextArea with javascript within the Html

Re: extending RichTextArea

2009-03-26 Thread alberto
Hi I'am still working on the project. I'am having any difficulties: 1) I can not control the position of the cursor within the RichTextArea. I's there any native javascript method to move the corsor for example to the end of the text in the area? 2) Suppose i typed while in the text area. I

extending RichTextArea

2009-03-22 Thread alberto
Hi I'm requsted to extend RichTextArea to add it some functionalities. I would like to implement the functionality of syntax highlighting. For example when i type in the text area some key-words like if, for ,while ... the should appear bigger or painted Could you give any advices on how to

Re: SlideShow with GWT

2008-12-16 Thread Alberto Zaccagni
Hi, this is a GWT wrapper for the Lightbox Slideshow: http://code.google.com/p/gwtsshow/ Ciao On Tue, Dec 16, 2008 at 1:45 PM, kilkenny a.bue...@gmail.com wrote: Hi Gabriel A simple slide show like widget could be built using the DeckPanel widget. Set 'AnimationEnabled' to true and there

Re: Where can I host a GWT-App with server-side RPC calls??

2008-11-02 Thread Alberto Zaccagni
Hi, I used eatj.com some time ago, you get an address similar to s43.eatj.comafter sign up. It is free, that means that you have to restart your server every x hours (did not remember how many), as far as I know is the only free service supporting Java. If you go the Python way you can use Google

Garbled InfoWindows in gwt-maps

2008-09-30 Thread Alberto Núñez
Since the upgrade to the 1.0.0 version of gwt-maps, I cannot see the InfoWindows properly. They are messed up, displaying the complete resource background image behind the text. For example, the InfoWindow shadow is shown as this image: http://maps.google.com/intl/es_ALL/mapfiles/iws2.png Is

Subclassing the gwt-maps Marker

2008-09-26 Thread Alberto Núñez
Well, now that the RC of gwt-maps with the new API is out, it's time for me to ask again (http://groups.google.com/group/Google-Web-Toolkit/ browse_thread/thread/c2c12a9b5b297f7a/fa8d113d1e00a4b5) for an issue I have been struggling with for some time. Yesterday I had the opportunity to ask Sumit

gwt-google-apis (maps): Subclass Marker

2008-09-11 Thread Alberto Núñez
Hi all, I want to subclass Marker in order to use a JavaScript library (LabeledMarker) that provides a subclass of GMarker. Is there any way I can do that without rewriting the whole Marker and MarkerImpl classes? Regards, Alberto. --~--~-~--~~~---~--~~ You

<    1   2