Subversion Repositories SmartDukaan

Rev

Go to most recent revision | Details | 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:row>
111
							<g:customCell>
587 chandransh 112
								<g:Label styleName='{style.blueLabel}'>Vendor Item ID:</g:Label>
586 chandransh 113
							</g:customCell>
114
							<g:customCell>
608 chandransh 115
								<g:Label styleName='{style.greenLabel}' ui:field="vendorItemId"></g:Label>
586 chandransh 116
							</g:customCell>
117
						</g:row>
118
					</g:Grid>
119
				</g:cell>
120
				<g:cell>
121
					<g:Grid>
122
						<g:row>
123
							<g:customCell>
587 chandransh 124
								<g:Label styleName='{style.blueLabel}'>MRP:</g:Label>
586 chandransh 125
							</g:customCell>
126
							<g:customCell>
608 chandransh 127
								<g:Label styleName='{style.greenLabel}' ui:field="mrp"></g:Label>
586 chandransh 128
							</g:customCell>
129
						</g:row>
130
						<g:row>
131
							<g:customCell>
587 chandransh 132
								<g:Label styleName='{style.blueLabel}'>MOP:</g:Label>
586 chandransh 133
							</g:customCell>
134
							<g:customCell>
608 chandransh 135
								<g:Label styleName='{style.greenLabel}' ui:field="mop"></g:Label>
586 chandransh 136
							</g:customCell>
137
						</g:row>
138
						<g:row>
139
							<g:customCell>
608 chandransh 140
								<g:Label styleName='{style.blueLabel}'>Dealer Price:</g:Label>
141
							</g:customCell>
142
							<g:customCell>
143
								<g:Label styleName='{style.greenLabel}' ui:field="dealerPrice"></g:Label>
144
							</g:customCell>
145
						</g:row>
146
						<g:row>
147
							<g:customCell>
587 chandransh 148
								<g:Label styleName='{style.blueLabel}'>Selling Price:</g:Label>
586 chandransh 149
							</g:customCell>
150
							<g:customCell>
608 chandransh 151
								<g:Label styleName='{style.greenLabel}' ui:field="sellingPrice"></g:Label>
586 chandransh 152
							</g:customCell>
153
						</g:row>
154
						<g:row>
155
							<g:customCell>
587 chandransh 156
								<g:Label styleName='{style.blueLabel}'>Weight:</g:Label>
586 chandransh 157
							</g:customCell>
158
							<g:customCell>
608 chandransh 159
								<g:Label styleName='{style.greenLabel}' ui:field="weight"></g:Label>
586 chandransh 160
							</g:customCell>
161
						</g:row>
162
					</g:Grid>
163
				</g:cell>
587 chandransh 164
				<g:cell>
165
					<g:Grid>
166
						<g:row>
167
							<g:customCell>
168
								<g:Label styleName='{style.blueLabel}'>Added On:</g:Label>
169
							</g:customCell>
170
							<g:customCell>
608 chandransh 171
								<g:Label styleName='{style.greenLabel}' ui:field="addedOn"></g:Label>
587 chandransh 172
							</g:customCell>
173
						</g:row>
174
						<g:row>
175
							<g:customCell>
176
								<g:Label styleName='{style.blueLabel}'>Start Date:</g:Label>
177
							</g:customCell>
178
							<g:customCell>
608 chandransh 179
								<g:Label styleName='{style.greenLabel}' ui:field="startDate"></g:Label>
587 chandransh 180
							</g:customCell>
181
						</g:row>
182
						<g:row>
183
							<g:customCell>
184
								<g:Label styleName='{style.blueLabel}'>Retiring Date:</g:Label>
185
							</g:customCell>
186
							<g:customCell>
608 chandransh 187
								<g:Label styleName='{style.greenLabel}' ui:field="retireDate"></g:Label>
587 chandransh 188
							</g:customCell>
189
						</g:row>
608 chandransh 190
						<g:row>
191
							<g:customCell>
192
								<g:Label styleName='{style.blueLabel}'>Updated On:</g:Label>
193
							</g:customCell>
194
							<g:customCell>
195
								<g:Label styleName='{style.greenLabel}' ui:field="updatedOn"></g:Label>
196
							</g:customCell>
197
						</g:row>
587 chandransh 198
					</g:Grid>
199
				</g:cell>
608 chandransh 200
				<g:cell>
201
					<g:Grid>
202
						<g:row>
203
							<g:customCell>
204
								<g:Label styleName='{style.blueLabel}'>Best Deals Text:</g:Label>
205
							</g:customCell>
206
							<g:customCell>
207
								<g:Label styleName='{style.greenLabel}' ui:field="bestDealsText"></g:Label>
208
							</g:customCell>
209
						</g:row>
210
						<g:row>
211
							<g:customCell>
212
								<g:Label styleName='{style.blueLabel}'>Best Deals Value:</g:Label>
213
							</g:customCell>
214
							<g:customCell>
215
								<g:Label styleName='{style.greenLabel}' ui:field="bestDealsValue"></g:Label>
216
							</g:customCell>
217
						</g:row>
218
					</g:Grid>
219
				</g:cell>
586 chandransh 220
			</g:HorizontalPanel>
221
		</g:center>
222
	</g:DockLayoutPanel>
585 chandransh 223
</ui:UiBinder>