Re: Route animation in google maps with GWT

2010-10-25 Thread Jan
Hi Chad, thanks for your answers. You pretty much got me out of trouble.. :-) But there are still one or two questions: - Your marker (arrow) change his angle adjustement. How did you do that? Because i didn't found a possibility to set the angle.. - What kind of Elements are used in your Tim S

Currency Symbol in NumberFormat

2010-10-25 Thread PARAG
Hi, I want to use custom number format which may contain currency symbol for perticular locale. I found that with the com.google.gwt.i18n.client.NumberFormat class we can achieve this but the symbol for the currency is ¤ instead of ¤ in java. Note that the unicode used is same as that of the java

Re: how to extends class with UiBinder

2010-10-25 Thread Tamer Sezgin
Did you specify where to look for the classes in the "*my*" namespace? There should be a line at the top of your new xml.ui file, which says something like: xmlns:*my*='urn:import:com.example.project.client'> You can check the GWT mail example, in the following file it uses Mailboxes, Tasks, and

Learning RequestFactory but DynaTableRf fails

2010-10-25 Thread Rud
Working to understand the RequestFactory with the DynaTableRf sample. Problem is the @ProxyFor ad @Service annotations all have errors about not finding the associated classes, e.g. Address, Person, SchoolCalendarService. Error is: com.google.gwt.sample.dynatablerf.domain.Address can not be found

Re: How do I send program generated Images to my users?

2010-10-25 Thread Daniel Kurka
Hi Greg, from my point of view there are to ways of doing this: - Generate the image with a servlet on the fly (return the appropriate mime type and the image) or (if the images are small) - you can encode them using base64 and set them as data in an image url Hope that helps - Daniel Kurka 20

Re: Development server not loaded on IE when -bindAddress 0.0.0.0

2010-10-25 Thread Daniel Kurka
Does firefox work? -Daniel Kurka 2010/10/23 antichrist > I'm using "-bindAddress 0.0.0.0" argument and using test from IE6,7,8. > > Suddenly I cannot load webpage anymore. Page title is loaded but > that's all. > > And no response on Eclipse Development mode console. > > Summary > > Development

Re: Question that i don't found in yours FAQ's

2010-10-25 Thread Daniel Kurka
If you have some restrictions on your code on the server side (beeing able to run in a 1.4 java enviroment) you can still use java 6 to run gwt. (and you should) just make sure to set your javac to compile with java 1.4 as target... -Daniel Kurka 2010/10/26 Jim Douglas > I have to ask > > W

Re: update a single widget lead to the whole page refresh?

2010-10-25 Thread rajakumar Iyyemperumal
Can you post the code ? I think there is some problem in the code. On Tue, Oct 26, 2010 at 10:48 AM, Daniel Kurka wrote: > have you tried speed tracer to see whats actually going on inside the > browser? > > -Daniel Kurka > > 2010/10/25 Jason > > Yes, It's flex table. But I create the table in i

gwt-maven-plugin from Google and Codehaus

2010-10-25 Thread hezjing
Hi GWT 2.1 is using gwt-maven-plugin 1.3.2.google, and it is maintain in GWT's plugin repository. What is the difference between this plugin and the gwt-maven-plugin 1.2 from http://mojo.codehaus.org/gwt-maven-plugin/ Where can I find the documentation for gwt-maven-plugin 1.3.2.google? Thank

Re: update a single widget lead to the whole page refresh?

2010-10-25 Thread Daniel Kurka
have you tried speed tracer to see whats actually going on inside the browser? -Daniel Kurka 2010/10/25 Jason > Yes, It's flex table. But I create the table in initialization and > never change it then. > > I can under when I update the label, it require find the dom elmement > of label. but wh

problem with background position

2010-10-25 Thread ailinykh
Hello, everybody! I try to manipulate with background image and background position. I need to change background image and background position on the fly. What I have is a couple of images: @sprite .i1 { gwt-image: 'image1'; width: 65px;

Re: Question that i don't found in yours FAQ's

2010-10-25 Thread Jim Douglas
I have to ask Why would you use a version of Java (1.4.2) that's been dead and unsupported for two years? What is stopping you from using current versions of Java (1.6.0_22) and GWT (2.0.4 or 2.1.0)? On Oct 25, 9:43 am, Diego Basurco Mancisidor wrote: > Hi, i want know if i can use Google

Re: What Major Companies Use GWT???

2010-10-25 Thread Thomas Broyer
On 25 oct, 17:06, Sir Codealot wrote: > What major companies are already using GWT?  I'm a little surprised > that this sort of info is not available and obvious, front and center, > on the GWT FAQs, but I can't find it.  Most software tools have a big, > glowing page with all of the corporate lo

Re: Idea of RequestFactory

2010-10-25 Thread Thomas Broyer
On 25 oct, 20:50, Rafi wrote: > On 25 Paź, 20:29, Thomas Broyer wrote: > > > """ > > When querying the server, RequestFactory does not automatically > > populate relations in the object graph. To do this, use the with() > > method on a request and specify the related property name as a String:

Re: What Major Companies Use GWT???

2010-10-25 Thread Harpal Grover
On Mon, Oct 25, 2010 at 11:06 AM, Sir Codealot wrote: > What major companies are already using GWT?  I'm a little surprised > that this sort of info is not available and obvious, front and center, > on the GWT FAQs, but I can't find it.  Most software tools have a big, > glowing page with all of t

GWT-Platform spring integration

2010-10-25 Thread tc
Does anyone have an example of using the Spring support for dispatch that has been integrated into GWT-Platform? I am having trouble getting the client to hit the server ( 404 error ). Thanks -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" grou

What Major Companies Use GWT???

2010-10-25 Thread Sir Codealot
What major companies are already using GWT? I'm a little surprised that this sort of info is not available and obvious, front and center, on the GWT FAQs, but I can't find it. Most software tools have a big, glowing page with all of the corporate logos that make use of that software. Background:

Re: Gwt page refresh issue

2010-10-25 Thread Jeff Schwartz
Refresh reloads your javascript and runs it from the top so if the first thing your app does is display the login in screen then that is what will be displayed when the user refreshes the page. Use history and HistoryListener to control your user's navigation. A common patter is the following:

Re: Firefox gwt dev plugin

2010-10-25 Thread Parul Vasani
Please test that Java is installed in your browser by visiting the Java test page at java.com. If not installed, try creating a sym link to libnpjp2.so in firefox plugin dir, for example, /usr/lib/firefox/plugins$ ln -s /usr/lib/jvm/java-6-sun-1.6.0.20/jre/ lib/i386/libnpjp2.so -- You received t

Question that i don't found in yours FAQ's

2010-10-25 Thread Diego Basurco Mancisidor
Hi, i want know if i can use Google Web Toolkit 1.7 with java 1.4 without problems, or i only can use the GWT 1.4 version where i see that need Java 1.4 or higher. Thanks, Diego -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to t

Re: Gwt page refresh issue

2010-10-25 Thread Jeff Schwartz
BTW I glanced over the whole login thing but really login is authentication which is going to require you hit the server to validate the user. There are a lot of good resources on the web which you can google that will show how to do this using a servlet and request session id. What is critical in

Re: GWT & RPC and security of the data in the client

2010-10-25 Thread David Chandler
Hi Be-noix, As always, the client should never be trusted. It would be safer to keep your SessionData object on the server and have all your RPC services check it before returning potentially sensitive data. HTH, On Sat, Oct 23, 2010 at 2:48 PM, Be-noix wrote: > Hi, > > I'm a beginner with GWT,

Re: Expenses Example Problem with Maven

2010-10-25 Thread David Chandler
Hi Norberto, 2.1.0 isn't quite live yet. In the mean time, you can use change gwt.version in the pom.xml to 2.1-SNAPSHOT. HTH, On Sun, Oct 24, 2010 at 1:05 PM, Norberto wrote: > Hi, everyone! > > I'm triying to get the  expenses example of RC 2.1 but... > > I get this message from maven: >

How do I send program generated Images to my users?

2010-10-25 Thread Greg Dougherty
Hi all, My servlet is creating images that I need to send to the client. My first thought was save the image to a file, then send the path to that image to the client, which can then call new Image (GWT.getModuleBaseURL () + imagePath); This worked just fine in the development environment. But

Re: Creating an image file so I can send it to the client

2010-10-25 Thread Greg Dougherty
Thanks. It turns out the problem was that all the pixels weren't loaded. So I put in a loop to call thread.sleep for a second then try again, and that fixed the problem. Greg On Oct 22, 8:56 pm, John LaBanca wrote: > Here is an > example:http://www.exampledepot.com/egs/java.awt.image/Image2Bu

Re: Newbie questions

2010-10-25 Thread A. Stevko
re: c) what are the best sites for learning ? ie video tutorials etc Check out the Google IO YouTube channel for vids on popular and advaced topics. http://www.youtube.com/user/GoogleDevelopers and http://www.youtube.com/results?search_query=google+web+toolkit+2010&aq=7m On Mon, Oct 25, 2010 a

Re: Updating Ubuntu caused devmode to stop working

2010-10-25 Thread Tamer Sezgin
I'm using FF 3.6.11 on a newly installed Ubuntu 10.10 and it works properly. On Mon, Oct 25, 2010 at 8:02 PM, Paul Robinson wrote: > I'm using FF 3.6.11 on ubuntu 10.04LTS with no problems. > > > On 23/10/10 10:07, trippledes wrote: > > HI all, > I was fine yesterday, everything was working ok.

Re: adding a DockLayoutPanel to a SimplePanel?

2010-10-25 Thread Tamer Sezgin
I would prefer finding which component actually sets the "*position: relative*" attribute and prevent it, but until now I could not.. I tried another workaround and called '* getElement().removeAttribute("style");*' at the end of the constructor of my view implementation to remove the "*position: r

Re: Idea of RequestFactory

2010-10-25 Thread Rafi
On 25 Paź, 20:29, Thomas Broyer wrote: > """ > When querying the server, RequestFactory does not automatically > populate relations in the object graph. To do this, use the with() > method on a request and specify the related property name as a String: > >    Request findReq = > requestFactory.per

Re: adding a DockLayoutPanel to a SimplePanel?

2010-10-25 Thread Vincent
I faced the same problem with LayoutPanel inside SimplePanel. For now, the only workaround a found is the same than the one proposed by Jeff, except that I extends the LayoutPanel. On 25 oct, 16:48, Jeff Larsen wrote: > One option would be to extend AbsolutePanel and have it implement > AcceptsOn

Re: "client" code from external directory

2010-10-25 Thread Thomas Broyer
On 25 oct, 13:22, Alex Shabanov wrote: > Hi all, > > I have a GWT module in my maven project which structure is as follows: > > /project-root >    | >    pom.xml >    | >    /gwt-module {<< uses general-constants} >    |      | >    |      pom.xml >    |      ... >    | >    /other-module {<< us

Re: Idea of RequestFactory

2010-10-25 Thread Thomas Broyer
On 25 oct, 13:14, Rafi wrote: > Hi! > > I am playing around with new RequestFactory feature available in 2.1, > and actually I think that I don't get the idea. > > At first i thought, that RequestFactory will bring me something like > local domain model. > Lets assume that entity A and proxy for

Re: Setting specific slice color in PieChart

2010-10-25 Thread Chris Conroy
It should work out of the box. One gotcha is that if you have a value that is 0, the it won't take up a color slice. See the SpeedTracer LatencyDashboard as an example: http://code.google.com/p/speedtracer/source/browse/trunk/samples/LatencyDashboard/src/com/google/speedtracer/latencydashboard/cli

how to extends class with UiBinder

2010-10-25 Thread mars
hi, I need to create a class, myBox, to extends HTMLPanel so that i can add content to it. here is my code: ui.xml:     .java: public class MyBox extends Composite { /** * The UiBinder interface. */ interface Binder extends

Re: Updating Ubuntu caused devmode to stop working

2010-10-25 Thread Paul Robinson
I'm using FF 3.6.11 on ubuntu 10.04LTS with no problems. On 23/10/10 10:07, trippledes wrote: HI all, I was fine yesterday, everything was working ok. I did my usual update to ubuntu and suddenly devmode GWT stopped working. Ive reinstalled the firefox addon for GWT but nothing, the code seems t

Re: 2.1 RC1 Logging Question

2010-10-25 Thread Rud
This is also mentioned over in the GAE group: http://groups.google.com/group/google-appengine-java/browse_frm/thread/cdd1134573efbfd0/6bfb8ca3c2eae157#6bfb8ca3c2eae157 I just tested the GAE 1.3.7 and 1.3.8 libraries. The .7 logging works but the .8 does not. Rud http://www.mysticlakesoftware.com

Re: UiBinder - Binding UIs at run time

2010-10-25 Thread Frank
Thanks a lot! On 25 Okt., 17:03, Jeff Larsen wrote: > Correct, you cannot allow people to upload straight UIBinder xml > files. > > Those xml files are actually used at compile time to generate the UI, > they do not exist after the java code has been rendered to > javascript. > > On Oct 25, 6:58 

Re: UiBinder - Binding UIs at run time

2010-10-25 Thread Jeff Larsen
Correct, you cannot allow people to upload straight UIBinder xml files. Those xml files are actually used at compile time to generate the UI, they do not exist after the java code has been rendered to javascript. On Oct 25, 6:58 am, Frank wrote: > Hi, > > I'm new to GWT and eploring its capabili

Re: adding a DockLayoutPanel to a SimplePanel?

2010-10-25 Thread Jeff Larsen
One option would be to extend AbsolutePanel and have it implement AcceptsOneWidget. I'm using MVP4g, so I'm not that familiar with the new Activity based MVP architecture in 2.1. On Oct 25, 2:14 am, Tamer Sezgin wrote: > Hi Jeff, thank you for the quick response. > > Just as you described, I w

Setting specific slice color in PieChart

2010-10-25 Thread Killian
Hi Evevery, First of all apologies if this isn't the correct discussion group to answer this query. I have been looking for the gwt visualization api group but couldn't find it. My query is quite simple. I am trying to find a way to set the color of specific slices inside a PieChart object. It see

Re: GWT as a Desktop App (no browser !)

2010-10-25 Thread Be-noix
QT is pretty easy to use and has WebKit in it, with the full support of javascript. You can compile your app for Win, Linux, OSX, ... Ben On 23 oct, 10:10, Stefan Bachert wrote: > Hi matt, > > this requirement are somewhat strange. Anyway, > I would rather for a possibility to modify an open sou

Setting specific slice color in PieChart

2010-10-25 Thread Killian
Hi Evevery, First of all apologies if this isn't the correct discussion group to answer this query. I have been looking for the gwt visualization api group but couldn't find it. My query is quite simple. I am trying to find a way to set the color of specific slices inside a PieChart object. It see

Development server not loaded on IE when -bindAddress 0.0.0.0

2010-10-25 Thread antichrist
I'm using "-bindAddress 0.0.0.0" argument and using test from IE6,7,8. Suddenly I cannot load webpage anymore. Page title is loaded but that's all. And no response on Eclipse Development mode console. Summary Development Server Off : Page not found. Development Server with argument -bindAddres

Sporadic ClassCastException

2010-10-25 Thread Carl
Hi, I sporadically receive the exception shown below or simular. This is in development mode. I'm not sure about production mode. Is there a way to catch all exceptions in GWT? I don't see any of my lines in the exception and wonder what I can do to avoid this in the future. I use GWT 2.0.4, OS X

Idea of RequestFactory

2010-10-25 Thread Rafi
Hi! I am playing around with new RequestFactory feature available in 2.1, and actually I think that I don't get the idea. At first i thought, that RequestFactory will bring me something like local domain model. Lets assume that entity A and proxy for it are present. Lets assume that this entity A

UiBinder - Binding UIs at run time

2010-10-25 Thread Frank
Hi, I'm new to GWT and eploring its capabilities. I started working with the UiBinder and I'm struggling with the following issue: Is it possible to render UiBinder XML files at run time? I'd like to enable my users to upload the UI specification via some dialog and render a preview of the genera

Newbie questions

2010-10-25 Thread kuriaNdungu
Hello guys and gals. Currently i'm learning Java and i'm really excited about GWT etc. my background is vb6 and vba , so i've never actually written any real OO code. I'm finding it a little challenging thinking of everything as objects after many years as a procedural coder. Some background... I

GWT Designer can not download !

2010-10-25 Thread Priest Wen
GWT Designer can not download ! What's the problem ? -- 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 google-web-toolk

Gwt page refresh issue

2010-10-25 Thread sam
i created a Gwt prototype,entry point is LOGIN page,once login is success it will direct to the home page.The problem is after login successfully if i click on the "refresh button of the Browser its directing to the login page".so that i have to enter the login details again. please suggest me to

GWT & RPC and security of the data in the client

2010-10-25 Thread Be-noix
Hi, I'm a beginner with GWT, and would need an advice about RPC & security of the data. What i'm doing is a basic 'login' feature. I implemented the part with RPC in which the client ask to the server if a user/password is valid. As an answer, the client receive an instance of my class SessionDat

"client" code from external directory

2010-10-25 Thread Alex Shabanov
Hi all, I have a GWT module in my maven project which structure is as follows: /project-root | pom.xml | /gwt-module {<< uses general-constants} | | | pom.xml | ... | /other-module {<< uses general-constants as well} | | | pom.xml |

Re: GWT as a Desktop App (no browser !)

2010-10-25 Thread Olx
Hi, depending on requirement to desktop native integration you can consider: - Titanium (http://www.appcelerator.com/) - Mozilla Prism (http://prism.mozillalabs.com/) in fact wrap your html/ js app with xulrunner. - Adobe Air Alternatively you can use Webkit and a programming language of your cho

Updating Ubuntu caused devmode to stop working

2010-10-25 Thread trippledes
HI all, I was fine yesterday, everything was working ok. I did my usual update to ubuntu and suddenly devmode GWT stopped working. Ive reinstalled the firefox addon for GWT but nothing, the code seems to be running but firefox is no longer calling it. any ideas? I noticed a number of posts with f

Re: Cannot found source in GWT Project

2010-10-25 Thread AlexG
Okay, the problem is solved. The problem was the GWT Designer, the new Enhanced Compilation feature. I uninstalled the GWT Desginer and the Erros are gone now. Greets Alex On 25 Okt., 15:08, AlexG wrote: > Thanks for your reply, > > so you can say, it´s a bug in the plugIn? > > I don´t get an

Re: 2.1 RC1 Logging Question

2010-10-25 Thread madein
Hi Rud, I have the same problem with my env. I've recently spent a number of hours trying to find root cause or workaround but without success... I've also created completely new HelloWorld project to confirm that sarver-side logging is not working - logs are printed out only for warnings and sever

Re: Firefox gwt dev plugin

2010-10-25 Thread Geoffrey De Smet
Fixable by removing my entire firefox profile (so all my bookmarks, history, etc). Not sure how I will fix it, as I 'd like to keep my bookmarks, history etc. During the original installation I somehow managed to install the plugin twice at the same time from 1 page, which is apparently not a go

Re: Cannot found source in GWT Project

2010-10-25 Thread AlexG
Thanks for your reply, so you can say, it´s a bug in the plugIn? I don´t get any Errors when I GWT compile, I have lots of Errors now on several of my Projects, but everything seems to work as intended. I think it´s very strange. my collegue has the same Errors now too. We don´t know why they app

Re: Firefox gwt dev plugin

2010-10-25 Thread Geoffrey De Smet
I have the same problem (firefox 3.6, 64 bit ubuntu linux 10.10), but the solutions outlined on the page don't work. Op 19-10-10 23:49, Craig schreef: Are you on Linux? If so then the solutions outlined here will do the trick: http://groups.google.com/group/google-web-toolkit/browse_thread/thr

Page Flip Animation

2010-10-25 Thread fonghuangyee
Is it possible to create page flip animation as the flash demo by using GWT? http://www.flashpageflip.com/demos/free/ -- 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.

Re: gwt 2.1 - what is correct DAO architecture while using RequestFactory?

2010-10-25 Thread Ramon Buckland
> Though there are shortcomings in the RC1 release; which includes the > findXxx static method on your entities (data model). > I've heard this will be sorted out in a 2.1.1 release shortly after > the 2.1.0. > This design, I assume, comes from how Spring-ROO has the finder 'design' embedded via A

Re: Cannot found source in GWT Project

2010-10-25 Thread bodyboarder20
We had the same problem w/ both the recent download of the GWT 2.1 SDK as well as the plugin w/ STS. The fix was to download the 2.1 snapshot and drop that into the folder for the SDK plugin (you can find the path inside of the error message you receive when you GWT compile). Odd that nobody else

Re: [2.1.0.RC1] UnableToCompleteException: Loading inherited module 'com.google.gwt.core.XSLinker'

2010-10-25 Thread Geoffrey De Smet
Turns out the maven gwt plugin used a different version of gwt-dev, which caused this. Op 25-10-10 13:54, Geoffrey De Smet schreef: Hi, when compiling our application with the gwt-maven-plugin, which worked perfectly with 2.0.4, it fails with 2.1.0.RC1, with this exception: [INFO] Loading inhe

TabPlayoutPanel and hiding Tabs

2010-10-25 Thread Ümit
There is already a post about that but unfortunately there is no reply and I also couldn't reply in the other thread, so I post this question again. I am trying to hide a Tab of a TabLayoutPanel during runtime with the following call: getTabWidget(1).setVisible(true); However it only hides the bo

[2.1.0.RC1] UnableToCompleteException: Loading inherited module 'com.google.gwt.core.XSLinker'

2010-10-25 Thread Geoffrey De Smet
Hi, when compiling our application with the gwt-maven-plugin, which worked perfectly with 2.0.4, it fails with 2.1.0.RC1, with this exception: [INFO] Loading inherited module 'com.google.gwt.user.User' [INFO]Loading inherited module 'com.google.gwt.core.Core' [INFO] Loading inherited m

Re: Native event not getting fires

2010-10-25 Thread lalit
When I use the deprecated createKeyPressEvent with more argument, it fires the tab event but the behavior is not as per the tab key press The new code changes from the above code in createKeyPress event line as follows NativeEvent nativeEvent = Document.get().createKeyPressEvent(false,false,false

Native event not getting fires

2010-10-25 Thread lalit
I have a text widget where I want to make enter event to behave like a tab event. so I capture the Key press event and raise a tab native event. However the tab behavior is not reflected in the application. Thee code for event handler is public void onKeyPress(KeyPressEvent event) {

Re: xml file with gwt

2010-10-25 Thread MAM
sorry for the delay, thank you for the help On 22 oct, 14:21, David Chandler wrote: > A quick Google search turns up > this:http://www.ibm.com/developerworks/xml/tutorials/x-xmlgwt/index.html > > HTH, > > On Fri, Oct 22, 2010 at 5:56 AM, MAM wrote: > > hi, > > i'm newbie with GWT  and want to c

Scrollbar on the body part of a CellTable

2010-10-25 Thread Rodrigue Lagoue
Hi! Is it possible to have a vertical scrollbar on the table's body part (the table except the header)? There is also strange effect when displaying an empty table. When no rows are added, the header take all the place reserved to the table. That's why I would like to know if there is a way on the

Re: custom header style on CellTable

2010-10-25 Thread Rodrigue Lagoue
Thanks John, I also think the way with Cells is easier one. On Sat, Oct 23, 2010 at 3:49 AM, John LaBanca wrote: > The easiest way to have a button in a Header is to create a Header > with a ButtonCell > ButtonCell buttonCell = new ButtonCell(); > Header myHeader = new Header(buttonCell); > myTa

Re: GWT 2.1 and Editors

2010-10-25 Thread Vincent
I'm indeed using SimpleBeanEditorDriver and I don't see anything at the editor level neither. Thanks for your answer anyway Thomas. On 22 oct, 23:49, Thomas Broyer wrote: > On 22 oct, 18:50, Vincent wrote: > > > Hello, > > > I'm working on a prototype which involve GWT 2.1 Activity andEditors.

Re: update a single widget lead to the whole page refresh?

2010-10-25 Thread Jason
Yes, It's flex table. But I create the table in initialization and never change it then. I can under when I update the label, it require find the dom elmement of label. but why the size of the flextable will impact the peformance so greatly? I guess the browser would be able to find the element i

Re: update a single widget lead to the whole page refresh?

2010-10-25 Thread Jason
I implement the testing appliation without any traffic. It's a pure page with a label and a flex table only. The label is updated by a Timer every 300ms with current date and time. That's all. On Oct 19, 8:18 am, Didier DURAND wrote: > Hi Jason, > > Did you check for any traffic with the server

Cannot found source in GWT Project

2010-10-25 Thread AlexG
Hi all, I am trying the RequestFactory since RC1 release. It seems, that everything was working fine, but since yesterday, I get strange Erros in only one of my Projects: mypackage.MyClass can not be found in source packages. Check the inheritance chain from your module; it may not be inheriting

GWT module 'X' needs to be (re)compiled, please run a compile or use the Compile/Browse button in hosted mode

2010-10-25 Thread jorge
Hi! I was trying to update to GWT 2.0.4 from 1.7.0 and I got this message. I'm using gwt-maven-plugin. I've been searching over the internet for this and tried a lot of things and I can't solve it. I tried to move back to 1.7.0 but now I always get "Plugin failed to connect hosted mode server at

Re: Compile with different color themes

2010-10-25 Thread Andreas
I want to change the color during the compiling. But I dont understand how to create a generator for the different themes. On Oct 22, 4:33 pm, Stefan Bachert wrote: > Hi Andreas, > > Your question does not make clear how you want to change thecolor > values. > Surely you can change the value incs

Re: adding a DockLayoutPanel to a SimplePanel?

2010-10-25 Thread Tamer Sezgin
Hi Jeff, thank you for the quick response. Just as you described, I want to remove SimplePanel, and use DockLayoutPanel. But *ActivityManager.setDisplay()* method only accepts *AcceptsOneWidget* as the display parameter. And it seems this interface is only implemented by SimplePanel and its subcla