Subversion Repositories SmartDukaan

Rev

Rev 1344 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
585 chandransh 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
	<ui:style>
586 chandransh 5
		.outer {
6
			border-left: 1px solid #999;
7
			border-bottom: 1px solid #999;
8
			cursor: pointer;
9
			cursor: hand;
585 chandransh 10
		}
586 chandransh 11
 
587 chandransh 12
		.blueLabel {
13
			color: white;
14
			font: bold 12px tahoma, arial, helvetica, sans-serif;
15
			border: 1px solid #99bbe8;
16
			padding: 5px;
17
			background-color: blue
586 chandransh 18
		}
587 chandransh 19
 
20
		.greenLabel {
21
			color: black;
22
			font: bold 12px tahoma, arial, helvetica, sans-serif;
23
			border: 1px solid #99bbe8;
24
			padding: 5px;
25
			background-color: #66ff99;
26
		}
585 chandransh 27
	</ui:style>
586 chandransh 28
 
29
	<g:DockLayoutPanel styleName='{style.outer}' unit='EM'>
30
		<g:center>
31
			<g:HorizontalPanel>
32
				<g:cell>
33
					<g:Grid>
34
						<g:row>
35
							<g:customCell>
587 chandransh 36
								<g:Label styleName='{style.blueLabel}'>Item id:</g:Label>
586 chandransh 37
							</g:customCell>
38
							<g:customCell>
608 chandransh 39
								<g:Label styleName='{style.greenLabel}' ui:field="itemId"></g:Label>
586 chandransh 40
							</g:customCell>
41
						</g:row>
42
						<g:row>
43
							<g:customCell>
960 chandransh 44
								<g:Label styleName='{style.blueLabel}'>Product Group:</g:Label>
45
							</g:customCell>
46
							<g:customCell>
47
								<g:Label styleName='{style.greenLabel}' ui:field="productGroup"></g:Label>
48
							</g:customCell>
49
						</g:row>
50
						<g:row>
51
							<g:customCell>
587 chandransh 52
								<g:Label styleName='{style.blueLabel}'>Brand:</g:Label>
586 chandransh 53
							</g:customCell>
54
							<g:customCell>
608 chandransh 55
								<g:Label styleName="{style.greenLabel}" ui:field="brand"></g:Label>
586 chandransh 56
							</g:customCell>
57
						</g:row>
58
						<g:row>
59
							<g:customCell>
587 chandransh 60
								<g:Label styleName='{style.blueLabel}'>Model Number:</g:Label>
586 chandransh 61
							</g:customCell>
62
							<g:customCell>
608 chandransh 63
								<g:Label styleName="{style.greenLabel}" ui:field="modelNumber"></g:Label>
586 chandransh 64
							</g:customCell>
65
						</g:row>
66
						<g:row>
67
							<g:customCell>
587 chandransh 68
								<g:Label styleName='{style.blueLabel}'>Model Name:</g:Label>
586 chandransh 69
							</g:customCell>
70
							<g:customCell>
608 chandransh 71
								<g:Label styleName="{style.greenLabel}" ui:field="modelName"></g:Label>
586 chandransh 72
							</g:customCell>
73
						</g:row>
608 chandransh 74
						<g:row>
75
							<g:customCell>
76
								<g:Label styleName='{style.blueLabel}'>Colour:</g:Label>
77
							</g:customCell>
78
							<g:customCell>
79
								<g:Label styleName="{style.greenLabel}" ui:field="color"></g:Label>
80
							</g:customCell>
81
						</g:row>
586 chandransh 82
					</g:Grid>
83
				</g:cell>
84
				<g:cell>
85
					<g:Grid>
86
						<g:row>
87
							<g:customCell>
587 chandransh 88
								<g:Label styleName='{style.blueLabel}'>Category:</g:Label>
586 chandransh 89
							</g:customCell>
90
							<g:customCell>
608 chandransh 91
								<g:Label styleName='{style.greenLabel}' ui:field="category"></g:Label>
586 chandransh 92
							</g:customCell>
93
						</g:row>
94
						<g:row>
95
							<g:customCell>
587 chandransh 96
								<g:Label styleName='{style.blueLabel}'>Comments:</g:Label>
586 chandransh 97
							</g:customCell>
98
							<g:customCell>
608 chandransh 99
								<g:Label styleName='{style.greenLabel}' ui:field="comments"></g:Label>
586 chandransh 100
							</g:customCell>
101
						</g:row>
102
						<g:row>
103
							<g:customCell>
587 chandransh 104
								<g:Label styleName='{style.blueLabel}'>Catalog Item ID:</g:Label>
586 chandransh 105
							</g:customCell>
106
							<g:customCell>
608 chandransh 107
								<g:Label styleName='{style.greenLabel}' ui:field="catalogItemId"></g:Label>
586 chandransh 108
							</g:customCell>
109
						</g:row>
110
					</g:Grid>
111
				</g:cell>
112
				<g:cell>
113
					<g:Grid>
114
						<g:row>
115
							<g:customCell>
587 chandransh 116
								<g:Label styleName='{style.blueLabel}'>MRP:</g:Label>
586 chandransh 117
							</g:customCell>
118
							<g:customCell>
608 chandransh 119
								<g:Label styleName='{style.greenLabel}' ui:field="mrp"></g:Label>
586 chandransh 120
							</g:customCell>
121
						</g:row>
122
						<g:row>
123
							<g:customCell>
587 chandransh 124
								<g:Label styleName='{style.blueLabel}'>MOP:</g:Label>
586 chandransh 125
							</g:customCell>
126
							<g:customCell>
608 chandransh 127
								<g:Label styleName='{style.greenLabel}' ui:field="mop"></g:Label>
586 chandransh 128
							</g:customCell>
129
						</g:row>
130
						<g:row>
131
							<g:customCell>
608 chandransh 132
								<g:Label styleName='{style.blueLabel}'>Dealer Price:</g:Label>
133
							</g:customCell>
134
							<g:customCell>
135
								<g:Label styleName='{style.greenLabel}' ui:field="dealerPrice"></g:Label>
136
							</g:customCell>
137
						</g:row>
138
						<g:row>
139
							<g:customCell>
587 chandransh 140
								<g:Label styleName='{style.blueLabel}'>Selling Price:</g:Label>
586 chandransh 141
							</g:customCell>
142
							<g:customCell>
608 chandransh 143
								<g:Label styleName='{style.greenLabel}' ui:field="sellingPrice"></g:Label>
586 chandransh 144
							</g:customCell>
145
						</g:row>
146
						<g:row>
147
							<g:customCell>
587 chandransh 148
								<g:Label styleName='{style.blueLabel}'>Weight:</g:Label>
586 chandransh 149
							</g:customCell>
150
							<g:customCell>
608 chandransh 151
								<g:Label styleName='{style.greenLabel}' ui:field="weight"></g:Label>
586 chandransh 152
							</g:customCell>
153
						</g:row>
154
					</g:Grid>
155
				</g:cell>
587 chandransh 156
				<g:cell>
157
					<g:Grid>
158
						<g:row>
159
							<g:customCell>
160
								<g:Label styleName='{style.blueLabel}'>Added On:</g:Label>
161
							</g:customCell>
162
							<g:customCell>
608 chandransh 163
								<g:Label styleName='{style.greenLabel}' ui:field="addedOn"></g:Label>
587 chandransh 164
							</g:customCell>
165
						</g:row>
166
						<g:row>
167
							<g:customCell>
168
								<g:Label styleName='{style.blueLabel}'>Start Date:</g:Label>
169
							</g:customCell>
170
							<g:customCell>
608 chandransh 171
								<g:Label styleName='{style.greenLabel}' ui:field="startDate"></g:Label>
587 chandransh 172
							</g:customCell>
173
						</g:row>
174
						<g:row>
175
							<g:customCell>
176
								<g:Label styleName='{style.blueLabel}'>Retiring Date:</g:Label>
177
							</g:customCell>
178
							<g:customCell>
608 chandransh 179
								<g:Label styleName='{style.greenLabel}' ui:field="retireDate"></g:Label>
587 chandransh 180
							</g:customCell>
181
						</g:row>
608 chandransh 182
						<g:row>
183
							<g:customCell>
184
								<g:Label styleName='{style.blueLabel}'>Updated On:</g:Label>
185
							</g:customCell>
186
							<g:customCell>
187
								<g:Label styleName='{style.greenLabel}' ui:field="updatedOn"></g:Label>
188
							</g:customCell>
189
						</g:row>
587 chandransh 190
					</g:Grid>
191
				</g:cell>
608 chandransh 192
				<g:cell>
193
					<g:Grid>
194
						<g:row>
195
							<g:customCell>
196
								<g:Label styleName='{style.blueLabel}'>Best Deals Text:</g:Label>
197
							</g:customCell>
198
							<g:customCell>
199
								<g:Label styleName='{style.greenLabel}' ui:field="bestDealsText"></g:Label>
200
							</g:customCell>
201
						</g:row>
202
						<g:row>
203
							<g:customCell>
204
								<g:Label styleName='{style.blueLabel}'>Best Deals Value:</g:Label>
205
							</g:customCell>
206
							<g:customCell>
207
								<g:Label styleName='{style.greenLabel}' ui:field="bestDealsValue"></g:Label>
208
							</g:customCell>
209
						</g:row>
210
					</g:Grid>
211
				</g:cell>
586 chandransh 212
			</g:HorizontalPanel>
213
		</g:center>
214
	</g:DockLayoutPanel>
585 chandransh 215
</ui:UiBinder>