Re: Is GWT supported by Google anymore?

2010-02-16 Thread Stine Søndergaard
:D 2010/2/16 Mahmoud Abou-Nassif > Relax: http://www.youtube.com/watch?v=UN0MpBQG3-E -- 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 grou

Re: GWT 2.0 UI BINDER MVP

2010-01-26 Thread Stine Søndergaard
That is the question I felt like asking as well, Dalla. -- 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-too

Re: GWT 2.0 UI BINDER MVP

2010-01-25 Thread Stine Søndergaard
... And how would the code example look if it was done the way you describe in your first paragraph? -- 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 f

Re: MVP and tabs :)

2010-01-22 Thread Stine Søndergaard
5. EditContactPresenter empties container and adds his own view object* -- 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

Re: MVP and tabs :)

2010-01-22 Thread Stine Søndergaard
Hmm.. maybe I should be a bit more specific? :} When I study Google's Contacts example I see for example the following flow 1. User clicks add contact button 2. AddContactEvent is added to eventBus 3. AppController reacts upon this event and adds "add" to the History 4. AppController reacts u

Re: GWT 2.0 UI BINDER MVP

2010-01-22 Thread Stine Søndergaard
Looking so much forward to read the answers to this issue :) I am totally stuck in a similar situation... -- 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 unsubscr

Re: MVP and tabs :)

2010-01-22 Thread Stine Søndergaard
Hmmm... would be so nice to see some more code examples :) Anyone? :P Thanks, Stine :) -- 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 grou

Re: MVP and tabs :)

2010-01-21 Thread Stine Søndergaard
Hmm... let's say I have a MainPanelView.ui.xml containing... Tab A Tab B ... and a TabAView.ui.xml containing... Click if you like tab A: ... and a TabBView.ui.xml containing... Click if you like tab B: ..

Re: TabLayoutPanel example

2010-01-19 Thread Stine Søndergaard
Yup, I would have found that very useful as well :) The way to something pretty seems endless without the default CSS... Well, maybe you can use this as a start: .gwt-TabLayoutPanelTabs .gwt-TabLayoutPanelTab { cursor: pointer; color: black; font-weight: bold; text-align: center;

Re: TabLayoutPanel example

2010-01-19 Thread Stine Søndergaard
This is what you will probably see with barHeight 50 and no CSS: *HTML* header Custom header able ... and when you click on "Custom header" you will see: *HTML* header Custom header baker Not that that is very pretty! ;D And actually I do not find it easy at all to supply some CSS that make it

Re: TabLayoutPanel example

2010-01-19 Thread Stine Søndergaard
Hello :) My suggestion is to increase the barHeight number... Cheers, Stine -- 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 e

Re: UiBinder and DecoratedTabPanel...

2010-01-19 Thread Stine Søndergaard
*Sigh* - nt working for me!! :8 How come this is just so easy to everybody else?! :D How do you guys manage to get a complicated ui.xml not only containing plain HTML tags together - maybe even without any help from a DTD? Well, maybe I should just wait until Google is more filled up with nice

Re: UiBinder and DecoratedTabPanel...

2010-01-19 Thread Stine Søndergaard
Aha - found the help entry! Thanks! ;D Now I only have to locate the DTD!!! Any ideas?! :] Thanks and sorry for all the stupid questions, Stine -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to goog

Re: UiBinder and DecoratedTabPanel...

2010-01-19 Thread Stine Søndergaard
Thanks a lot for your input, Sebastian!! :) I know it might be basics for you guys, but could you maybe please explain to me how I configure a DTD in IntelliJ? :} One of the reasons that I have decided to avoid TabLayoutPanel is that the panel does not come with a default styling... have you foun

Re: UiBinder and DecoratedTabPanel...

2010-01-19 Thread Stine Søndergaard
I can see that there is a section named... Use in UiBinder Templates ... for some classes (eg. TabLayoutPanel)... but what about the rest? :} Please heeelp! Thanks a lot, Stine -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post

Re: UiBinder and DecoratedTabPanel...

2010-01-19 Thread Stine Søndergaard
... ehm... is there no way I can make my Intellij IDEA help me filling in the allowed elements in my ui.xml file?! :} -- 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: SplitLayoutPanel children don't show up ???

2010-01-14 Thread Stine Søndergaard
Hi :) My guess is that you have not included the necessary CSS? The layout panels of GWT 2 do not come with a default styling... I have spent a lot of time being frustrated about this fact! ;D And it was also the subject of for instance this thread: http://groups.google.com/group/google-web-tool

Re: TabLayoutPanel...

2010-01-14 Thread Stine Søndergaard
They are... as they show up when the label is non-empty :) Well.. -- 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 goog

Re: TabLayoutPanel...

2010-01-14 Thread Stine Søndergaard
Yup :) Except that I have a bit of a problem making the icons show up on the tabs ;D I am trying to make it work with... private Label image = new Label(); private String inStyle = "blob"; private String outStyle = "blib"; ... and... .blib { background: url(../images/emotion_unhappy_sma

Re: TabLayoutPanel...

2010-01-14 Thread Stine Søndergaard
But the example from the JavaDoc does not tell me how to make more complex tabs... Thanks a lot for your codes, Mariyan still I find it difficult to create a UI without it becoming a big mess ;) Thanks, Stine -- You received this message because you are subscribed to the Google Groups "Goog

Re: TabLayoutPanel...

2010-01-13 Thread Stine Søndergaard
But is TabLayoutPanel not the new TabPanel? :/ -- 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-toolkit+unsu

Re: TabLayoutPanel...

2010-01-13 Thread Stine Søndergaard
Hmm... let me see... is something like this at all a right approach? :] public class Test implements EntryPoint { public final void onModuleLoad() { TabLayoutPanel mainTabs = new TabLayoutPanel(40, Style.Unit.PX); mainTabs.add(new HTML("Page A"), new MyTab("images/a.jpg", "Tab

Re: TabLayoutPanel...

2010-01-13 Thread Stine Søndergaard
I must be stupid... I simply don't get how I do it!!! >D At least not without having my code end up as a big mess and mixture of objects and plain HTML... hmm... -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send e

Re: TabLayoutPanel...

2010-01-13 Thread Stine Søndergaard
... first issue! >D How can I use a TabBar in connection with a TabLayoutPanel? :} -- 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, s

Re: TabLayoutPanel...

2010-01-13 Thread Stine Søndergaard
Thank you, Deanna :) I will follow your advices right away and see were it takes me! I might be back!! ;) -- 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 unsubsc

Re: Development mode - refresh is not enough to see my changes!

2010-01-13 Thread Stine Søndergaard
Hello Dazza :) Ehm, I am afraid I cannot find anything similar in my Intellij IDEA :/ But that is no guarantee that it is not there! Hmmm... Thanks for your input!! :) -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group,

Re: Development mode - refresh is not enough to see my changes!

2010-01-13 Thread Stine Søndergaard
Yup, I am just using a link elem! Will do some research on ClientBundle and CssResource right away though! :P Thank you so much for the tip! :) -- 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

Re: Development mode - refresh is not enough to see my changes!

2010-01-13 Thread Stine Søndergaard
Would be so nice to know if I am the only one who does not know how to avoid a restart of development mode every time I make a change in my CSS file. :} -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email

Re: GWT 2.0 books

2010-01-13 Thread Stine Søndergaard
Sounds great with a book!! -- 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-toolkit+unsubscr...@googlegroups

Re: DockLayoutPanel sample code

2010-01-13 Thread Stine Søndergaard
Yup, I read that somewhere, thanks :) I have included a... http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd";> But that really does not help me with all the styling! :8 To style for instance a TabLayoutPanel I only find a subset of the relevant style classes in the JavaDoc don't I? What about t

Re: UiBinding...

2010-01-13 Thread Stine Søndergaard
Aha - THANKS!! :) -- 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-toolkit+unsubscr...@googlegroups.com. Fo

Re: Development mode - refresh is not enough to see my changes!

2010-01-13 Thread Stine Søndergaard
Hmm... I find it totally frustrating that I have to restart development mode to see any change I make to my style sheet!! :[ What am I doing wrong?? How do you do it?? Thanks a lot, Stine -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To

Re: UiBinding...

2010-01-13 Thread Stine Søndergaard
... well, apparently it has to be styleName="{style.test}" ... that is not what I got from http://code.google.com/intl/da-DK/webtoolkit/doc/latest/DevGuideUiBinder.html#Hello_Stylish_World All my other issues mentioned above are still unsolved though ;D Thanks, Stine -- You received this mess

Re: UiBinding...

2010-01-13 Thread Stine Søndergaard
> > How come that when I add a style thingie to my ui.xml file > ... more precisely it happens when I add the class="{style.test}" to the label ;) -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to go

Re: UiBinding...

2010-01-13 Thread Stine Søndergaard
*Sigh* - this is up hill!! :8 How come that when I add a style thingie to my ui.xml file .test { background-color: pink; } Tab A Welcome to A :)

Re: UiBinding...

2010-01-13 Thread Stine Søndergaard
... and also I have bit of a problem doing the UI binding stuff in my Intellij IDEA! ... the text within ' ' is in red? :/ Thanks, Stine -- 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-to

Re: SmartGWT?!

2010-01-13 Thread Stine Søndergaard
Thanks a lot for all your inputs!! :) I have decided to start with just plain GWT... not that that is not challenging enough!! ;D -- 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...@googl

Re: DockLayoutPanel sample code

2010-01-13 Thread Stine Søndergaard
The most frustrating is that all this CSS invention seems so obvious to everybody else!! ;D -- 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

Re: SplitLayoutPanel

2010-01-12 Thread Stine Søndergaard
Hmm... wonder what other developers do they just avoid using the new panels from GWT 2.0 maybe? :) Or is there a secret place where some default styles can be fetched? ;D Know that this post is not really asking anything new... hmm ;) -- You received this message because you are subscribed t

Re: DockLayoutPanel sample code

2010-01-12 Thread Stine Søndergaard
Looking very much forward to the default styles :) To me the way to even just a sample application seems endless without them... *sigh*... -- 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

Re: SplitLayoutPanel

2010-01-12 Thread Stine Søndergaard
Hehe ;D - you are doing pretty good yourself as well!! Yes, I have learned that I can find the relevant style class names in the JavaDoc :) But what if I don't want to start completely from scratch in styling those GWT 2.0 panels? :} Thanks again, Stine -- You received this message because you

Re: SplitLayoutPanel

2010-01-12 Thread Stine Søndergaard
But what about the new panels introduced in GWT 2.0? They are not on that page, are they? :/ Sorry, if I am a bit slow here! :8 Thanks, Stine -- 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

Re: SplitLayoutPanel

2010-01-12 Thread Stine Søndergaard
Hmmm... what if I would like the style of the panels displayed in the documentation? :} http://code.google.com/intl/da-DK/webtoolkit/doc/latest/DevGuideUiPanels.html#LayoutPanels No easy way to acchieve that? Thanks and cheers from the Newbie ;) -- You received this message because you are sub

Re: SplitLayoutPanel

2010-01-12 Thread Stine Søndergaard
Yes, thank you - actually I just found the style classes in the JavaDoc myself! 8) A bit different issue: do you also have to restart development mode completely to see CSS changes you make? :) Thanks a lot for your very usefull input, Stine 2010/1/12 julien.dram...@gmail.com > no they are no

Re: SplitLayoutPanel

2010-01-12 Thread Stine Søndergaard
Okay :) ... But to me it was not that obvious how to construct the names of the relevant style classes... -- 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 unsubsc

Re: SmartGWT?!

2010-01-12 Thread Stine Søndergaard
It indeed helped!! :) Thank you so much!! -- 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-toolkit+unsubscr.

Re: SmartGWT?!

2010-01-12 Thread Stine Søndergaard
Hello again :) It would be fantastic if you could maybe attach a few more words to this: "SmartGWT is a javascript wrapper - which means you don't get the advantages of the compiler, browser specific code compiles, code elimination, and runAsync (code splitting)." ... I am not sure I understand

Re: SmartGWT?!

2010-01-11 Thread Stine Søndergaard
I will take a look right away - thank you!! :) -- 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-toolkit+unsu

Re: SmartGWT?!

2010-01-11 Thread Stine Søndergaard
Famous video? :) -- 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-toolkit+unsubscr...@googlegroups.com. For

Re: Development mode - refresh is not enough to see my changes!

2010-01-11 Thread Stine Søndergaard
Hm, okay! :) Thank you for your answer... what you are saying is that I should only have to empty my chache then? :P -- 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.