Subversion Repositories eFlore/Applications.cel

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
692 aurelien 1
<!DOCTYPE ui:UiBinder SYSTEM "http://dl.google.com/gwt/DTD/xhtml.ent">
2
<ui:UiBinder xmlns:ui="urn:ui:com.google.gwt.uibinder"
3
    xmlns:g="urn:import:com.google.gwt.user.client.ui"
4
    xmlns:vues="urn:import:org.tela_botanica.client.vues.observation">
5
     <ui:style>
6
        .tabPanelExample1
7
        {
8
            border: 3px solid green;
9
        }
10
     </ui:style>
11
    <g:TabLayoutPanel addStyleNames="{style.tabPanelExample1}" ui:field="tabPanel" barUnit="PX" barHeight="20">
12
        <g:tab>
13
            <g:header>
14
                Observations
15
            </g:header>
16
            <vues:PanneauPrincipalObservation></vues:PanneauPrincipalObservation>
17
        </g:tab>
18
        <g:tab>
19
            <g:header>
20
                Images
21
            </g:header>
22
            <g:HTML><h2>Hello tab 2</h2></g:HTML>
23
        </g:tab>
24
    </g:TabLayoutPanel>
25
</ui:UiBinder>