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:

Why @UiFactory ListBox makeListBox1() apply for all UiBinder ListBoxes (ListBox1, ListBox2, ListBox3 etc?

2014-02-22 Thread Tom
Ok, I have a need to use many ListBoxes in UiBinder. Ok, in View.ui.xml file: g:ListBox ui:field='listBox1' visibleItemCount='3' g:item value='1' Car /g:item g:item value='2' Car2 /g:item g:item value='3' Car3 /g:item //more item /g:ListBox g:ListBox ui:field='listBox2'

Display videos from different Youtube channels, sorted by date (published) in my GWT application?

2014-02-22 Thread marian lux
As in the title described, I want to display a sorted list of Youtube videso (by publishing date) from different Youtube channels/users. I found the gwt-youtube-api https://code.google.com/p/gwt-youtube-api/ but I don't know if this api is any more in development. The last stable release was

Re: Why @UiFactory ListBox makeListBox1() apply for all UiBinder ListBoxes (ListBox1, ListBox2, ListBox3 etc?

2014-02-22 Thread Jens
The name of a @UiFactory method is irrelevant, what matters is its return type. Thats why it gets called for all your ListBox variables. What you actually need is @UiField(provided = true) for your listBox1. @UiField(provided = true) ListBox listbox1; public class MyWidget() { listbox1 = new

SuperDevMode: speedtracer.html reports much shorter compile times than what is really observed

2014-02-22 Thread Ivan Markov
I'm using GWT 2.5.1 (still). The subject says it all: - The reality: our project compiles for ~ 38 seconds (in the SuperDevMode Code Server; single permutation; second subsequent compilations). (This is what is printed in the Code Server console, and what I observe using a stopwatch.) - But

Re: Why @UiFactory ListBox makeListBox1() apply for all UiBinder ListBoxes (ListBox1, ListBox2, ListBox3 etc?

2014-02-22 Thread Thomas Broyer
Answered on StackOverflow (please crosslink when crossposting): http://stackoverflow.com/a/21956336/116472 On Saturday, February 22, 2014 12:23:15 PM UTC+1, Tom wrote: Ok, I have a need to use many ListBoxes in UiBinder. Ok, in View.ui.xml file: g:ListBox ui:field='listBox1'

Re: CssResource inheritance and avoiding rule repetition on injection, possibility of an @Require?

2014-02-22 Thread GWTter
On Friday, February 21, 2014 5:09:36 PM UTC+1, Thomas Broyer wrote: On Thursday, February 20, 2014 10:51:29 PM UTC+1, GWTter wrote: Before anything, sorry Thomas, I think I may have just replied to you instead of just the topic (buttons bugged on me a bit), no-spam intended

Re: CssResource inheritance and avoiding rule repetition on injection, possibility of an @Require?

2014-02-22 Thread Jens
At this point because SuperCssResource has now been reinjected and thus is now the last one declared between it and MyCssResource, its .genButton rule now wins and causes WidgetDisplayedFirst's button to now have a color of black. With the code above, it shouldn't (now there could be

[ANN] gwt-websockets 1.0 and gwt-eventsource 1.0

2014-02-22 Thread Peter Donald
Hi, I would like to announce the 1.0 releases of gwt-websockets [1] and gwt-eventsource [3]. These libraries provide gwt-ish abstractions over the underlying HTML5 websocket and eventsource capabilities. The libraries were extracted from existing projects and have gone through some fairly

Re: CssResource inheritance and avoiding rule repetition on injection, possibility of an @Require?

2014-02-22 Thread Thomas Broyer
You have a fundamental misunderstanding of @Import, despite the doc being rather clear, and that's your only problem (afaict). http://www.gwtproject.org/doc/latest/DevGuideClientBundle.html#Imported_scopes You also have a slight misunderstanding of @Shared. Let's go back to the basics:

Re: Why @UiFactory ListBox makeListBox1() apply for all UiBinder ListBoxes (ListBox1, ListBox2, ListBox3 etc?

2014-02-22 Thread Tom
Thaxnk you very much Jens, I put the listbox1 = new ListBox(true); after initWidget(uiBinder.createAndBindUi(this)); then i got an error, so i thought @UiField(provided = true) didn't work. On Sunday, February 23, 2014 1:09:06 AM UTC+11, Jens wrote: The name of a @UiFactory method is