GWT capabilities

2011-11-04 Thread selene
Hi everybody, I have to realize a new website. The requirements I'm asked to be compliant are the following: 1) HTML/XHTML 5.0 for the structure of the pages 2) CSS2/CSS3 for presentation, style, page layout delle pagine (only one style for all pages!) 3) javascript ECMA3 for the behaviour( clie

Re: auto-fit of height

2011-11-04 Thread Tony Edgin
Try replacing the SimplePanel on the content side with a ResizeLayoutPanel. On Fri, Nov 4, 2011 at 03:58, Даурен Нурланов wrote: > My application divided to several contents, and I want show them by > clicking on menus. There is splitPanel in rootPanel that has menu-side > and content-side. I use

Re: Ok, CssResources and ClientBundle, what am I doing wrong?

2011-11-04 Thread Danny Kirchmeier
Does your Style1.css now say this: @external .gwt-Button; .gwt-Button{ background: black; color: cyan; } Don't forget the semicolon at the end of the @external line. I forgot it the first few times I used it. It causes no error to be thrown and next style to be completely ignored. It worked f

Re: Ok, CssResources and ClientBundle, what am I doing wrong?

2011-11-04 Thread King_V
Aidan, Thanks. I'm still really just learning this stuff, so I'll admit to some cluelessness. Your advice took care of the Exception being thrown. However, I've noticed that the Button is ignoring the style. Am I using this technique incorrectly? I also tried adding "! important" to the style

Re: Ok, CssResources and ClientBundle, what am I doing wrong?

2011-11-04 Thread Aidan O'Kelly
You have .gwt-Button in the .css file, but not in the style interface, hence the compile error. It should be a clearer error (if you stop/start dev mode it will probably give you the correct error, and it certainly will if you GWT-compile the project) In any case, to fix, you need to declare .gwt-

Ok, CssResources and ClientBundle, what am I doing wrong?

2011-11-04 Thread King_V
All, I'm getting an exception trying to use CssResources and ClientBundle. Admittedly, I'm completely new to it and don't really quite know what I'm doing. So, can someone explain to me why this doesn't work, and what exactly it is that I'm doing wrong? In any case, here's my code. Both classes

Re: Maven compilation error

2011-11-04 Thread Hilco Wijbenga
On 4 November 2011 06:29, Anton Grinenko wrote: > I use gwt 2.4 and maven 3.0.1 with  gwt-maven-plugin 2.4.0 in my > application. During compilation I got an error: > > The most strange thing that this error occurs not always. Sometimes > maven build my project successfully. And sometimes I got t

Re: Popup windows & printing

2011-11-04 Thread Marcin Biegan
Why not just use CSS to hide everything you don't want to print? media=print and display:none should do the job, just hide everything except the stuff to print. You can do it dynamically in case you need to allow to print various regions of the application. On Oct 28, 3:30 am, Mike Dee wrote: > I

TypeOracleMediator help

2011-11-04 Thread bhomass
I am using java Play with mvp4g and found out they don't work together. neither group is able to provide help, because each one is unfamiliar with the other. I think the GWT group is best equipped to provide some insight into this, because it has to do with TypeOracleMediator's use of Thread based

Re: Trouble figuring out why Serialization is breaking down

2011-11-04 Thread Paul Robinson
Your Attribute class has a non-final, non-transient field of type "Object". That will stop Attribute from being gwt-serializable, which in turn stops Node and XmlNode. Object is not supported for gwt serialization. It doesn't matter if you only ever happen to put gwt-serializable things in ther

Re: Highcharts - updating chart with data

2011-11-04 Thread George Agiasoglou
Hi there, I am interested in using Highcharts in my app, how do you use the above code? I tried to use your code but it complains that it cannot find 'Chart' Thanks, G -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To view this discus

Re: Create a jaxb source gwt module

2011-11-04 Thread Juan Pablo Gardella
-1 i don't use and I wan't more dependencies. 2011/11/4 Blessed Geek > Looks like a lot of people are sharing XML /jaxb annotated dto's > between gwt client and server. > > Don't you think it is time for gwt team to include a gwt-sanitized > jaxb source module? - since everyone is doing it their

Re: GWT Developer Plugin for Firefox 7

2011-11-04 Thread Salvatore Piccione
Thank you very much! It works also for me: OS: Win 7 64 bit GWT: 2.4.0 Firefox: 7.0.1 Regards, Salvatore On 26 Ott, 16:10, Joel wrote: > It is inside the conversation, you even had it included in your reply. > > Here is the direct link to it > :http://groups.google.com/group/google-web-toolki

Create a jaxb source gwt module

2011-11-04 Thread Blessed Geek
Looks like a lot of people are sharing XML /jaxb annotated dto's between gwt client and server. Don't you think it is time for gwt team to include a gwt-sanitized jaxb source module? - since everyone is doing it their own way, might as well have the gwt team do it for us, once and for all. Does a

Re: Trouble figuring out why Serialization is breaking down

2011-11-04 Thread Juan Pablo Gardella
Check here http://stackoverflow.com/questions/4202964/serializationpolicy-error-when-performing-rpc-from-within-gwt-application 2011/11/4 laredotornado > Hi, Yes, in all three classes I have a no-argument public constructor, > like > > public XmlNode() { } > > Is there a way to get more specific

Re: Trouble figuring out why Serialization is breaking down

2011-11-04 Thread laredotornado
Hi, Yes, in all three classes I have a no-argument public constructor, like public XmlNode() { } Is there a way to get more specific information about why its failing? Thanks, - Dave On Nov 4, 9:37 am, Juan Pablo Gardella wrote: > Do you have a public/package default constructor? > > 2011/11/4

Re: Trouble figuring out why Serialization is breaking down

2011-11-04 Thread Juan Pablo Gardella
Do you have a public/package default constructor? 2011/11/4 Juan Pablo Gardella > puff, ignore the last mail. > > > 2011/11/4 Juan Pablo Gardella > >> You don't have in classpath the sources >> of com.cme.clearing.common.xml.XmlNode. This is the cause. >> >> >> >> 2011/11/4 laredotornado >> >>

Re: Trouble figuring out why Serialization is breaking down

2011-11-04 Thread Juan Pablo Gardella
puff, ignore the last mail. 2011/11/4 Juan Pablo Gardella > You don't have in classpath the sources > of com.cme.clearing.common.xml.XmlNode. This is the cause. > > > > 2011/11/4 laredotornado > >> Hi, >> >> I'm trying to pass an object over RPC but the call is failing with a >> "com.google.gwt

Re: Trouble figuring out why Serialization is breaking down

2011-11-04 Thread Juan Pablo Gardella
You don't have in classpath the sources of com.cme.clearing.common.xml.XmlNode. This is the cause. 2011/11/4 laredotornado > Hi, > > I'm trying to pass an object over RPC but the call is failing with a > "com.google.gwt.user.client.rpc.SerializationException" exception. > Complete stack trace

Trouble figuring out why Serialization is breaking down

2011-11-04 Thread laredotornado
Hi, I'm trying to pass an object over RPC but the call is failing with a "com.google.gwt.user.client.rpc.SerializationException" exception. Complete stack trace is below. How do I figure out what field is causing the problem? The class and its member fields in question are ... public class XmlN

Re: Gwt-App totally blocks Browser-UI

2011-11-04 Thread tanteanni
thx for the info jens, do you say there is no way to keep the browser responsive but to do less work/ transfer less data on/to client? is there at least a way to keep browser responsive if browser has to do much work/logic? if i understood it right: transfer much data is worse than to do much w

update in listgrid

2011-11-04 Thread Ashu
Hi, iam using gwt in my application. currently we are updating while editing the listgrid and select some other panel or tab.this is ok but my requirement is after updating i need to give some information to user like 'updated succesfully' if it is updated or else updation not successfull like ca

Maven compilation error

2011-11-04 Thread Anton Grinenko
Greetings, I use gwt 2.4 and maven 3.0.1 with gwt-maven-plugin 2.4.0 in my application. During compilation I got an error: [INFO] [INFO] --- gwt-maven-plugin:2.4.0:compile (default) @ admin --- [INFO] auto discovered modules [ua.ardas.admin.Admin] [INFO] Compiling module ua.ardas.admin.Admin [I

auto-fit of height

2011-11-04 Thread Даурен Нурланов
My application divided to several contents, and I want show them by clicking on menus. There is splitPanel in rootPanel that has menu-side and content-side. I used SimplePanel for menu-side. And I tried place DockLayoutPanel on that SimplePanel, but DockLayoutPanel does not fit all space of SimpleP

CellTable horizontal Scroll bar

2011-11-04 Thread 张立强
I want to show cellTable scroll bar effect, don't data rolling. Because of my fathers many, very ugly font listing all together, so want to show the scroll bar cellTable horizontal. Thank you!!! -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" gr

Not able sign in to google usng GPE2.4 in MyEclipse 9.0

2011-11-04 Thread sj
Hi I'm using latest Google Plugin for Eclipse 2.4 from below URL in MyEclipse 9.0: http://dl.google.com/eclipse/plugin/beta/3.6 Starting the 'Sign In to Google' button (bottom of MyEclipse status bar) still working and this 2 days I just realize that is no respond, moreover the 'deploy to App Eng

GWT celltable How to create selectioncell in edittextcell ?

2011-11-04 Thread vaibhav bhalke
Hi, I want to create editable cell with datatype boolean. I don't want to use selectioncell for boolean data type My testBooleanColumn column's cell contains string with value true,false.. when I will click on cell present in testBooleanColumn then that cell should be editable and In th

Re: Firefox 7 GWT plugin

2011-11-04 Thread Michael Vogt
Hello Ramesh. >               Please help me to download gwt plugin for firefox 7. > Does providing the download link to you help? http://google-web-toolkit.googlecode.com/svn/trunk/plugins/xpcom/prebuilt/gwt-dev-plugin.xpi Greetings, Michael -- You received this message because you are subsc

Re: How to set the path to SDK relatively in Eclipse

2011-11-04 Thread Rikard Hultén
Select the variable and then press extend and browse to the file you wish to add. There should be no $ or % to the variable name. -- 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.goo