Error on the output directory for the project should be set to

2014-03-28 Thread Dilan A
Hi I'm try to setup gwt with maven, I'm getting following error message ; The output directory for the project should be set to /myNewGWT/war/WEB-INF/classes Is there is a fix for this? -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. T

Re: Only subset of HTML supported by HTML class?

2014-03-28 Thread Jens
> > Could you use span to make add numbers again? > No. It is totally fine to use , , , , , etc.. as they add semantic information to your HTML document. That's why they exist. -- J. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.

Re: Only subset of HTML supported by HTML class?

2014-03-28 Thread Blake McBride
Could you use span to make add numbers again? On Fri, Mar 28, 2014 at 10:23 AM, jaga wrote: > Hi, it is better to use CSS to format the text in HTML. I expect it would > work if you did that. Try using and CSS styles for text you want to > format. E.g., hi > > -- > You received this message b

Re: GWT Desktop-Notification

2014-03-28 Thread Rob
That looks good, however you might want to look into multi monitor support. With my browser open on Screen 2 (Windows 7 PC, Chrome) the notification window pops up on Screen 1. Rob On Saturday, 8 February 2014 16:23:31 UTC, Marcel K wrote: > > Here you are. > > http://gwtnotification.appspot.co

Re: RequestFactory Validation Tool

2014-03-28 Thread Thomas Broyer
[+cc google-web-toolkit@googlegroups] If Eclipse (and m2e-apt) is correctly configured to do the annotation processing, and doesn't fail at doing it, then yes you should be able to use a “pure Eclipse” workflow, with no need to invoke Maven. On Fri, Mar 28, 2014 at 1:28 PM, joris wrote: > Is i

Re: Development Mode will not be supported in Firefox 27+

2014-03-28 Thread dhoffer
Could you elaborate on how you have your POM setup? I'm trying to make the switch to SDM but I get errors running run-codeserver. Your setup seems ideal I'd like to know how you have both of those things configured. Not sure it matters but I use IntelliJ instead of Eclipse...DM worked great.

Re: fullscreen and popuppanels

2014-03-28 Thread Vassilis Virvilis
I see. Thanks for the links. If time permits I will cook something up and post it here for discussion. Vassilis On Fri, Mar 28, 2014 at 4:13 PM, Thomas Broyer wrote: > > > On Friday, March 28, 2014 3:07:20 PM UTC+1, Vassilis Virvilis wrote: >> >> Hello, >> >> I am playing with the fullscreen

Re: How to style a Row of CellTable when user click on a Cell (GWT)?

2014-03-28 Thread Tom
without redraw it won't work anyway On Saturday, March 29, 2014 12:53:21 AM UTC+11, Thomas Broyer wrote: > > redraw() will generate some HTML and inject it with innerHTML, so your > getRowElement() no longer exists after redraw(). > > Are you trying to re-implement SelectionModel and > DefaultSe

Re: How to style a Row of CellTable when user click on a Cell (GWT)?

2014-03-28 Thread Tom
Thank you very much. it's working after i remove the redraw();. However, it did not accept some other style like "*font-weight:normal."* Why it accepts "*background:red*" but not accept "*font-weight:normal*" or " *font-color:red*" On Saturday, March 29, 2014 12:53:21 AM UTC+11

remote source file in ui:style

2014-03-28 Thread Leon
Can I use http://www-c0-css.cc.uga.edu/uga/css/ugastyle-7.css"; /> in a uibinder file? I don't want ugastyle-7.css to be compiled by GWT and transformed into an obfuscated, minimized and optimized version so I can access any styles such as *featurecopy* defined in ugastyle-7.css like: http://

Re: remote source file in ui:style

2014-03-28 Thread Thomas Broyer
On Friday, March 28, 2014 6:29:55 PM UTC+1, Leon wrote: > > Can I use http://www-c0-css.cc.uga.edu/uga/css/ugastyle-7.css" > > /> in a uibinder file?

Re: How to style a Row of CellTable when user click on a Cell (GWT)?

2014-03-28 Thread Tom
Thank you very much. it's working after i remove the redraw(); On Saturday, March 29, 2014 12:53:21 AM UTC+11, Thomas Broyer wrote: > > redraw() will generate some HTML and inject it with innerHTML, so your > getRowElement() no longer exists after redraw(). > > Are you trying to re-implement Sel

Re: Only subset of HTML supported by HTML class?

2014-03-28 Thread jaga
Hi, it is better to use CSS to format the text in HTML. I expect it would work if you did that. Try using and CSS styles for text you want to format. E.g., hi -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To unsubscribe from this grou

fullscreen and popuppanels

2014-03-28 Thread Vassilis Virvilis
Hello, I am playing with the fullscreen capability of newish browsers. It works fine for my GWT widget but the PopupPanels are not visible when in fullscreen mode. They are not visible because the popup panels are children at the body element of the html and this is not visible anymore. You see m

Re: Development Mode will not be supported in Firefox 27+

2014-03-28 Thread Juan Pablo Gardella
Hello James, after replace ui.xml by pure javadoes the application compile faster? I thought ui.xml views increment a lot the compiler time. Juan 2014-03-27 23:58 GMT-03:00 James Wendel : > My company got screwed by using GXT2 with gxt-uibinder library that broke > with GWT 2.5 due to compiler

Re: fullscreen and popuppanels

2014-03-28 Thread Thomas Broyer
On Friday, March 28, 2014 3:07:20 PM UTC+1, Vassilis Virvilis wrote: > > Hello, > > I am playing with the fullscreen capability of newish browsers. It works > fine for my GWT widget but the PopupPanels are not visible when in > fullscreen mode. > > They are not visible because the popup panels

How to style a Row of CellTable when user click on a Cell (GWT)?

2014-03-28 Thread Tom
I want that when user click on a Cell belonging to a row of CellTable, then it will style the row. So I tried: myColumn.setFieldUpdater(new FieldUpdater(){ @Override public void update(int index, String[] object, String value){ if(mycondition){

Re: How to style a Row of CellTable when user click on a Cell (GWT)?

2014-03-28 Thread Thomas Broyer
redraw() will generate some HTML and inject it with innerHTML, so your getRowElement() no longer exists after redraw(). Are you trying to re-implement SelectionModel and DefaultSelectionEventManager

Re: Only subset of HTML supported by HTML class?

2014-03-28 Thread Blake McBride
Thanks. That was helpful. I checked through Chrome Developer Tools. The HTML is correctly getting to the browser. Turns out GXT's reset.css neutralizes much of HTML. Presumably this is done for a reason and I can't just get rid of it. Working around it is beyond me at the moment. Thanks! Bl

Re: GWT Application not showing in Safari

2014-03-28 Thread Jens
At least in iPad simulator your app works with iOS 6.1 and 7.1, but that does not mean a lot. Safari 6.x has some JIT issues which can break any JavaScript app at any time, maybe that's what has happened. At least we got hit by it and we currently generate special JS output that disables JIT for

GWT Application not showing in Safari

2014-03-28 Thread Magnus
Hello, I noticed that my GWT apps are not showing in Safari (iPad). The static host file (index.html) with the loading indicator shows, but not the generated content. The same on a Blackberry (but that's not so important.) Here an example: www.bavaria64.de What can I do? Thanks Magnus -- Y

Re: Development Mode will not be supported in Firefox 27+

2014-03-28 Thread Ed Bras
Can't agree more. Same experience, even contributed to mygwt (previous name of GXT)... The nice thing about GWT: making easy/fast small lib's, is also a risk; not being maintained.. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To unsubs

Re: RequestFactory Validation Tool

2014-03-28 Thread Thomas Broyer
Eclipse (thus STS) is quite bad at annotation processing. It regularly fails (forcing you to disable and re-enable it, and/or change the output folder and changing it back again). Try using the maven-processor-plugin (and configure maven-compiler-plugin with none) and configure m2e-apt to delega

Re: Development Mode will not be supported in Firefox 27+

2014-03-28 Thread Thomas Broyer
On Friday, March 28, 2014 3:58:00 AM UTC+1, James Wendel wrote: > > My company got screwed by using GXT2 with gxt-uibinder library that broke > with GWT 2.5 due to compiler changes. We've been stuck on GWT 2.4 for that > reason as we had 100+ .ui.xml files to convert to pure java. We finally did

Re: Only subset of HTML supported by HTML class?

2014-03-28 Thread Nicolas Weeger
Hello. Using GWT 2.5.0, I just tried that: final VerticalPanel panel = new VerticalPanel(); panel.add(new HTML("abcde hello emphisizedthebreak bold textabb",true)); and it renders as expected. Can you check using eg Firebug or some developers tools whether the tag is