aboutsummaryrefslogtreecommitdiff
path: root/src/org/traccar/web/client/view/ArchiveView.ui.xml
blob: 370eb024b28f8f86e78433cfc8c7b9a5ef6d3fdc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<!DOCTYPE ui:UiBinder SYSTEM "http://dl.google.com/gwt/DTD/xhtml.ent">
<ui:UiBinder
    xmlns:ui="urn:ui:com.google.gwt.uibinder"
    xmlns:g="urn:import:com.google.gwt.user.client.ui"
    xmlns:container="urn:import:com.sencha.gxt.widget.core.client.container"
    xmlns:gxt="urn:import:com.sencha.gxt.widget.core.client"
    xmlns:toolbar="urn:import:com.sencha.gxt.widget.core.client.toolbar"
    xmlns:grid="urn:import:com.sencha.gxt.widget.core.client.grid"
    xmlns:button="urn:import:com.sencha.gxt.widget.core.client.button"
    xmlns:form="urn:import:com.sencha.gxt.widget.core.client.form">

  <ui:with type="com.sencha.gxt.widget.core.client.container.VerticalLayoutContainer.VerticalLayoutData" field="toolBarRowData">
    <ui:attributes width="1" height="-1" />
  </ui:with>
  <ui:with type="com.sencha.gxt.widget.core.client.container.VerticalLayoutContainer.VerticalLayoutData" field="layoutData">
    <ui:attributes width="1" height="1" />
  </ui:with>

  <ui:with type="com.sencha.gxt.data.shared.ListStore" field="store" />
  <ui:with type="com.sencha.gxt.widget.core.client.grid.ColumnModel" field="columnModel" />

  <ui:with type="com.sencha.gxt.widget.core.client.grid.GridView" field="view">
    <ui:attributes stripeRows="true" autoFill="true" />
  </ui:with>

  <gxt:ContentPanel ui:field="contentPanel" headingText="Archive">
    <container:VerticalLayoutContainer>

      <container:child layoutData="{toolBarRowData}">
        <toolbar:ToolBar>

          <toolbar:LabelToolItem label="Device:" />
          <form:TimeField /> <!-- put combobox here -->
          <toolbar:SeparatorToolItem />

          <toolbar:LabelToolItem label="From:" />
          <form:DateField width="125" />
          <toolbar:LabelToolItem width="5" />
          <form:TimeField width="75" />
          <toolbar:SeparatorToolItem />

          <toolbar:LabelToolItem label="To:" />
          <form:DateField width="125" />
          <toolbar:LabelToolItem width="5" />
          <form:TimeField width="75" />
          <toolbar:SeparatorToolItem />
          
          <button:TextButton ui:field="loadButton" text="Load" />
        
        </toolbar:ToolBar>
      </container:child>
      
      <container:child layoutData="{layoutData}">
        <grid:Grid ui:field="grid" store="{store}" cm="{columnModel}" view="{view}" />
      </container:child>

    </container:VerticalLayoutContainer>
  </gxt:ContentPanel>

</ui:UiBinder>