Good day, i am developing an application which uses all types of
Panels, so far I haven't had any issues adding spacing between the
elements of some Panels (like HorizontalPanel and VerticalPanel), but
I cannot find how to do the same for the FlowPanel, DockPanel and a
CaptionPanel.

This is what I have so far... after several fails

//at the .css file
.tt-HorizontalPanel {
        background-color: transparent;
        border-spacing: 2px 2px;
        border-spacing: expression(cellSpacing =
2);
        padding: 2px;
        /* for IE */
}


//at the .java file
horizontalPanel.setStyleName(tt-HorizontalPanel);

so far this had work for the other panels,
but it doesnt work for the other ones:
.tt-FlowPanel {
        background-color: transparent;
        border-spacing: 2px 2px 2px 2px;
        border-spacing: expression(cellSpacing =
2);
        padding: 2px;
        /* for IE */
}

not even with td

.swt-FlowPanel td {
        padding: 2px;
        /* for IE */
}

Can anyone give me a hint about what to do?

Thank you and have a nice day.


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to