Re: UiBinder + HTML + Widgets

2010-02-28 Thread Stine
Hmm, think I have the same problem! Just did not see the solution -
could you maybe please explain the trick with the HTMLPanels it a bit
further?

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 group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Multiple modules?

2010-02-16 Thread Stine
Hello there,

I am struggling in getting the structure of my GWT application right.

The application is supposed to be an interface to a couple of quite
distinct areas - let us say area A and B. At the moment I am trying to
implement it as an interface with two tabs - one taking you to area A
and one taking you to area B. I do not see how I can have a nice
separation of the code needed for the two different areas in this way
though - applying the MVP pattern I end up having area A and area B
code in for instance both the client.view and the client.presenter
package:

src -
  - main
  - java
  - client
  + event
  - presenter
  + a_stuff
  + b_stuff
  - view
  + a_stuff
  + b_stuff
 :

I have not been able to find some good examples of how to use multiple
modules - and am wondering if my case might be one where multiple
modules would make sense?

Hints would be greatly appreciated,
thanks a lot from 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 email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



inherits name=com.google.gwt.inject.Inject/

2010-02-01 Thread Stine
Hi!

I am trying to introduce Gin in my GWT project and have added

inherits name=com.google.gwt.inject.Inject/

in my gwt.xml.

I am being told that I am missing the above inherits statement in my
gwt.xml when I try to create an injector though:

import com.google.gwt.inject.client.Ginjector;

public interface IMGinjector extends Ginjector {
IMStatusView getIMStatusView();
}

Has anyone experienced anything like that?

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 group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



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-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



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 from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



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 group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



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 unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



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 upon the History change and calls go on a
EditContactPresenter
5. EditContactPresenter empties container and adds an adds his own view
object

... and that happens every time the user clicks the add contact button!
Hmm... in the case of a tab layout panel... the child widgets are only added
once... not every time the user clicks a tab...

Hmmm... I simply do not see how my hierarchic presenters are put together!!!
:/

Any input will be greatly appreciated :)

Thanks a lot from 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 email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



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 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: MVP and tabs :)

2010-01-22 Thread Stine
So sorry! Did not mean to spam! But if that is how it is seen then I
will of course stop posting.

-- 
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 more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



MVP and tabs :)

2010-01-21 Thread Stine
Hello :)

I am still struggling with learning best practice in creating my GWT
application ;) At the moment I am trying to apply the MVP design
pattern described in 
http://code.google.com/webtoolkit/doc/latest/tutorial/mvp-architecture.html...

I imagine that my UI will be a tab panel where each tab links to a
certain area of the application... I have an idea that each of these
tabs should have a viewer and a presenter... and then maybe a viewer
creating the overall tab panel... hmmm... but I do not seem to be able
to put this hierarchic separation together in my code...

Does anyone out there has some code examples on how you apply MVP to a
tabbed application? :)

Sorry if this a stupid post!! :/

Thanks a lot,
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 email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.




Re: MVP and tabs :)

2010-01-21 Thread Stine Søndergaard
Hmm... let's say I have a MainPanelView.ui.xml containing...

ui:UiBinder xmlns:ui='urn:ui:com.google.gwt.uibinder'
 xmlns:g='urn:import:com.google.gwt.user.client.ui'
  g:TabLayoutPanel barUnit='PX' barHeight='30'
g:tab
  g:headerTab A/g:header
  g:DecoratorPanel ui:field=tab_a/g:DecoratorPanel
/g:tab
g:tab
  g:headerTab B/g:header
  g:DecoratorPanel ui:field=tab_b/g:DecoratorPanel
/g:tab
  /g:TabLayoutPanel
/ui:UiBinder

... and a TabAView.ui.xml containing...

ui:UiBinder xmlns:ui='urn:ui:com.google.gwt.uibinder'
 xmlns:g='urn:import:com.google.gwt.user.client.ui'
  g:VerticalPanel
g:LabelClick if you like tab A:/g:Label
g:Button text=Click me, click me! :P ui:field=button_a/
  /g:VerticalPanel
/ui:UiBinder

... and a TabBView.ui.xml containing...

ui:UiBinder xmlns:ui='urn:ui:com.google.gwt.uibinder'
 xmlns:g='urn:import:com.google.gwt.user.client.ui'
  g:VerticalPanel
g:LabelClick if you like tab B:/g:Label
g:Button text=Click me, click me! :P ui:field=button_b/
  /g:VerticalPanel
/ui:UiBinder

... and then I define a view and a presenter class for each of these
templates... hmm... and then I am kind of stuck!! D I can make my
AppController call the go method of a MainPanelPresenter object containing
an instance of the MainPanelView object... but don't see where the TabA and
TabB classes get into play... argh!
-- 

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 more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.



UiBinder and DecoratedTabPanel...

2010-01-19 Thread Stine
Hello :)

I am trying to get familiar with this UI binding stuff introduced in
GWT 2.0!

I have a problem finding out which child elements are allowed for for
instance DecoratedTabPanel...

Any input will be greatly appreciated! :]

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 group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.




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.

To unsubscribe from this group, send email to google-web-toolkit+unsubscr...@googlegroups.com.

For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.



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 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 more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.



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 found one maybe?

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 group, send email to google-web-toolkit+unsubscr...@googlegroups.com.

For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.



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 google-web-tool...@googlegroups.com.

To unsubscribe from this group, send email to google-web-toolkit+unsubscr...@googlegroups.com.

For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.



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 long examples :/

Btw, I managed to define a DecoratedTabPanel (see Sebastian's first reply)
in my template:

 gwt:DecoratedTabPanel
gwt:Tab
gwt:TabHTML
Tab 1
/gwt:TabHTML
gwt:HTMLPanel
Hello - welcom to tab 1 page :)
/gwt:HTMLPanel
/gwt:Tab
gwt:Tab
gwt:TabHTML
Tab 2
/gwt:TabHTML
gwt:HTMLPanel
Hello - welcom to tab 2 page :)
/gwt:HTMLPanel
/gwt:Tab
/gwt:DecoratedTabPanel

Cheers,
Stine not really a GWT fan :'/
-- 

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 more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.



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 email to google-web-toolkit+unsubscr...@googlegroups.com.

For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.



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 look somehow better... I cannot help finding
GWT up hill in general!! :S

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 email to google-web-toolkit+unsubscr...@googlegroups.com.

For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.



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;
background-color: #e3e9ff;
border-left: 1px solid #999;
border-right: 1px solid #999;
border-top: 1px solid #999;
float: left;
padding: 6px 10px;
margin: 0 4px;
}

.gwt-TabLayoutPanelTabs .gwt-TabLayoutPanelTab-selected {
background-color: #bcf;
cursor: default;
}

.gwt-TabLayoutPanelTab .gwt-Label {
color: black;
font-weight: bold;
}
-- 

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 more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.



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 "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 more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.



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_small.png) no-repeat left;
width: 50px;
}

.blob {
background: url(../images/emotion_happy_small.png) no-repeat left;
width: 50px;
}

But no icons show up... until I change to for instance...

 private Label image = new Label(*Sigh*);

Hmm :)
-- 

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 more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.



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 google-web-toolkit+unsubscr...@googlegroups.com.

For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.



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-toolkit/browse_thread/thread/d5b86b6227730227/6e1e12c3e19be786

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 email to google-web-toolkit+unsubscr...@googlegroups.com.

For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.



UiBinding...

2010-01-13 Thread Stine
Hello! :)

I am in the early stages of developing my first GWT application... and
have decided to use UiBinder introduced with GWT 2.0. (Maybe that is a
wrong decision?! ;))

Does anyone know a place where I can find some more examples than the
ones given in the documentation? :} In the JavaDoc for TabLayoutPanel
I found this:

g:TabLayoutPanel barUnit='PX' barHeight='3'
  g:tab
g:header size='7'bHTML/b header/g:header
g:Labelable/g:Label
  /g:tab
  g:tab
g:customHeader size='7'
  g:LabelCustom header/g:Label
/g:customHeader
g:Labelbaker/g:Label
  /g:tab
 /g:TabLayoutPanel

... am I the only one not finding those attributes like barHeight and
size completely self-explanatory?! :8

Also I am not completely sure if all my UI stuff shall go into a
single ui.xml file or if common practice is different? :}

Thanks a lot and cheers from Stine the Newbie :/
-- 
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 more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.




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 group, send email to google-web-toolkit+unsubscr...@googlegroups.com.

For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.



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...@googlegroups.com.

To unsubscribe from this group, send email to google-web-toolkit+unsubscr...@googlegroups.com.

For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.



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!

ui:UiBinder
xmlns:ui='urn:ui:com.google.gwt.uibinder'
xmlns:g='urn:import:com.google.gwt.user.client.ui'

... 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-tool...@googlegroups.com.

To unsubscribe from this group, send email to google-web-toolkit+unsubscr...@googlegroups.com.

For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.



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

ui:UiBinder
xmlns:ui='urn:ui:com.google.gwt.uibinder'
xmlns:g='urn:import:com.google.gwt.user.client.ui'

ui:style
.test { background-color: pink; }
/ui:style

g:TabLayoutPanel barUnit='PX' barHeight='50'
g:tab
g:header size='7'
bTab A/b
/g:header
g:LabelWelcome to A :)/g:Label
/g:tab
g:tab
g:customHeader size='7'
g:HorizontalPanel
g:Label text=Tab B class={style.test}/
/g:HorizontalPanel
/g:customHeader
g:LabelWelcome to B :)/g:Label
/g:tab
/g:TabLayoutPanel
/ui:UiBinder

... the page becomes all empty?! :[

Any input is greatly appreciated... 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 group, send email to google-web-toolkit+unsubscr...@googlegroups.com.

For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.



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 google-web-tool...@googlegroups.com.

To unsubscribe from this group, send email to google-web-toolkit+unsubscr...@googlegroups.com.

For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.



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 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 more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.



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 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 more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.



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.

For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.



Re: DockLayoutPanel sample code

2010-01-13 Thread Stine Søndergaard
Yup, I read that somewhere, thanks :) I have included a...

!DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0 Strict//EN 
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 the styling of a selected
versus an inactive tab for instance?! :/ Anywhere I can find a guide to
these things? Or is there no other way to get the necessary information than
looking at the HTML behind using my Firefox CSS plugin ? How do you guys do
it? :/ I feel like I am styling blind folded! D

Thanks,
Stine ... almost giving up ;]
-- 

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 more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.



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.com.

For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.



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 to google-web-tool...@googlegroups.com.

To unsubscribe from this group, send email to google-web-toolkit+unsubscr...@googlegroups.com.

For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.



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-tool...@googlegroups.com.

To unsubscribe from this group, send email to google-web-toolkit+unsubscr...@googlegroups.com.

For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.



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, send email to google-web-tool...@googlegroups.com.

To unsubscribe from this group, send email to google-web-toolkit+unsubscr...@googlegroups.com.

For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.



TabLayoutPanel...

2010-01-13 Thread Stine
Hello :)

I am still struggling with getting familiar with GWT ':]

Right now I am trying to create a tab panel where each tab contains
both an icon and a text describing what can be found at the attached
page. Maybe it does not sound of much!! But to me it is not that clear
how the tabs should be constructed! If I add horizontal panels as tabs
I find it difficult to write the CSS making the whole TabLayoutPanel
look nice... hmm...

Anyone out there who has solved a similar small excercise which I
could have a look at maybe? ;D Cannot find any examples on the
Internet...

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 group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.




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 unsubscribe from this group, send email to google-web-toolkit+unsubscr...@googlegroups.com.

For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.



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, send email to google-web-toolkit+unsubscr...@googlegroups.com.

For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.



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 email to google-web-tool...@googlegroups.com.

To unsubscribe from this group, send email to google-web-toolkit+unsubscr...@googlegroups.com.

For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.



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
A));
mainTabs.add(new HTML(Page B), new MyTab(images/b.jpg, Tab
B));
RootLayoutPanel.get().add(mainTabs);
}

class MyTab extends HTML {
public MyTab(String icon, String text) {
super(div style='background-image: url( + icon + );'  +
text + /div);
}
}
}
-- 

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 more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.



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+unsubscr...@googlegroups.com.

For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.



Re: DockLayoutPanel sample code

2010-01-12 Thread Stine
I have the same 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-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.




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 it ~:/ *Sigh*

Thanks a lt,
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 email to google-web-toolkit+unsubscr...@googlegroups.com.

For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.



Re: SplitLayoutPanel

2010-01-12 Thread Stine
I have the feeling that it is because I have to include the CSS needed
directly in my host page...
-- 
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 more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.




Re: SplitLayoutPanel

2010-01-12 Thread Stine
I have the feeling that it is because I have to include the CSS needed
directly in my host page... but where do I find the relevant CSS?! :}
-- 
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 more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.




Re: SplitLayoutPanel

2010-01-12 Thread Stine
Gosh - now I know!! ;D I just need to include one of these lines in
the project XML file...

inherits name='com.google.gwt.user.theme.standard.Standard'/
inherits name=com.google.gwt.user.theme.chrome.Chrome/
inherits name=com.google.gwt.user.theme.dark.Dark/

Well, so far so good ;)

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 email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.




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 unsubscribe from this group, send email to google-web-toolkit+unsubscr...@googlegroups.com.

For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.



Re: SplitLayoutPanel

2010-01-12 Thread Stine
(Btw - the inclusion of a theme in the project XML did not seem to
make a difference anyway ;))

On 12 Jan., 14:39, Stine stinespl...@gmail.com wrote:
 Gosh - now I know!! ;D I just need to include one of these lines in
 the project XML file...

 inherits name='com.google.gwt.user.theme.standard.Standard'/
 inherits name=com.google.gwt.user.theme.chrome.Chrome/
 inherits name=com.google.gwt.user.theme.dark.Dark/

 Well, so far so good ;)

 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 email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.




Re: SplitLayoutPanel

2010-01-12 Thread Stine
The names of the relevant style classes can be found in the JavaDoc :)

http://google-web-toolkit.googlecode.com/svn/javadoc/2.0/index.html

Just in case someone else but me does not see things clearly right
away ;)

On 12 Jan., 14:45, Stine Søndergaard stinespl...@gmail.com wrote:
 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 unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.




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-tool...@googlegroups.com.

To unsubscribe from this group, send email to google-web-toolkit+unsubscr...@googlegroups.com.

For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.



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 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 more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.



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...@googlegroups.com.

To unsubscribe from this group, send email to google-web-toolkit+unsubscr...@googlegroups.com.

For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.



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 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 more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.



SmartGWT?!

2010-01-11 Thread Stine
Hello there!

Gosh, I have a problem getting started with all this GWT stuff!!

Am I wrong or isn't it necessary to chose whether you should use
SmartGWT right from the start?! :/

My problem in chosing using SmartGWT is that I cannot really find any
useful documentation out there...

Hmm, I seem to be totally lost - don't even know what to ask actually!
D

Any input will be greatly appreciated

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 email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.




Re: SmartGWT?!

2010-01-11 Thread Stine
... when using SmartGWT I feel that I have to chose one of the looks
in the show case set (here http://www.smartclient.com/smartgwt/showcase/)
and then adjust my application to this... I don't clearly see how I
can exploit SmartGWT to achieve a look grabbed out of the air! ;)

Sorry if I am all rubbish! :S
-- 
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 more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.




Re: SmartGWT?!

2010-01-11 Thread Stine
... approaches are a lot different when chosing raw GWT or SmartGWT,
are they not? :}
-- 
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 more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.




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.

To unsubscribe from this group, send email to google-web-toolkit+unsubscr...@googlegroups.com.

For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.



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 more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.



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+unsubscr...@googlegroups.com.

For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.



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

2010-01-08 Thread Stine
Hello :)

I am very, very new to all this GWT stuff... so I might need all your
patience!! ;D Sorry!

I have created a very simple GWT application... and can see it working
when I launch in development mode from within my Intellij IDEA! 8D

I am having a bit of a problem with this development mode though:

When I make some changes in the EntryPoint class I can see those
changes by just doing a refresh in my browser... but when I do changes
to the host page I need to restart development mode before I can see
the changes...

Does anybody have an idea of what I am doing wrong? :/

Cheers from 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 email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.