Subversion Repositories SmartDukaan

Rev

Rev 9844 | Rev 11671 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1961 ankur.sing 1
<!DOCTYPE ui:UiBinder SYSTEM "http://dl.google.com/gwt/DTD/xhtml.ent">
2
<ui:UiBinder xmlns:ui="urn:ui:com.google.gwt.uibinder"
10484 vikram.rag 3
	xmlns:g="urn:import:com.google.gwt.user.client.ui" xmlns:dp="urn:import:com.google.gwt.user.datepicker.client">
4
 
5
	<ui:image field='gradient' src='gradient_bg_dark.png'
6
		repeatStyle='Horizontal' />
7
 
8
	<ui:style
9
		type='in.shop2020.catalog.dashboard.client.ItemDetails.ItemDetailStyle'>
1961 ankur.sing 10
		.outer {
10484 vikram.rag 11
		border-left: 1px solid #999;
12
		border-bottom: 1px solid #999;
13
		cursor: pointer;
14
		cursor: hand;
1961 ankur.sing 15
		}
10484 vikram.rag 16
 
1961 ankur.sing 17
		.blueLabel {
10484 vikram.rag 18
		color: white;
19
		font: bold 12px tahoma, arial, helvetica, sans-serif;
20
		border: 1px solid #99bbe8;
21
		padding: 5px;
22
		background-color: blue
1961 ankur.sing 23
		}
10484 vikram.rag 24
 
1961 ankur.sing 25
		.greenLabel {
10484 vikram.rag 26
		width: 100px;
27
		color: black;
28
		font: bold 12px tahoma, arial, helvetica, sans-serif;
29
		border: 1px solid #99bbe8;
30
		padding: 5px;
31
		background-color: #66ff99;
1961 ankur.sing 32
		}
10484 vikram.rag 33
 
1992 ankur.sing 34
		.fieldChanged {
10484 vikram.rag 35
		color: white;
36
		font: bold 12px tahoma, arial, helvetica, sans-serif;
37
		border: 1px solid #99bbe8;
38
		padding: 5px;
39
		background-color: red;
1992 ankur.sing 40
		}
10484 vikram.rag 41
 
2027 ankur.sing 42
		.outer {
10484 vikram.rag 43
		border-left: 1px solid #999;
44
		border-bottom: 1px solid #999;
45
		cursor: pointer;
46
		cursor: hand;
47
		}
48
 
49
		@sprite .header {
50
		gwt-image: 'gradient';
51
		background-color: #d3d6dd;
52
		table-layout: fixed;
53
		width: 100%;
54
		height: 100%;
55
		}
56
 
57
		.header td {
58
		font-weight: bold;
59
		text-shadow: #fff 0 2px 2px;
60
		padding: 2px 0 1px 10px;
61
		border-top: 1px solid #999;
62
		border-bottom: 1px solid #999;
63
		}
64
 
65
		.table {
66
		table-layout: fixed;
67
		width: 100%;
68
		}
69
 
70
		.table td {
71
		border-top: 1px solid #fff;
72
		border-bottom: 1px solid #fff;
73
		padding: 2px 0 2px 10px;
74
		}
75
		.numeric-box{
76
		width: 80px;
77
		text-align: right;
78
		color: black;
79
		font: bold 12px tahoma, arial, helvetica, sans-serif;
80
		border: 1px solid #99bbe8;
81
		padding: 5px;
82
		background-color: #66ff99;
83
		}
84
 
85
		.vendorTable {
86
		float: right;
87
		border: 1px solid #99bbe8;
88
		padding-top:10px
89
		}
90
 
2066 ankur.sing 91
		.inventoryTable {
10484 vikram.rag 92
		float: left;
93
		border: 1px solid #99bbe8;
94
		padding-bottom:10px
2027 ankur.sing 95
		}
10484 vikram.rag 96
 
97
		.buttonContainer {
98
		width: 100%;
99
		padding-top: 40px;
100
		padding-left: 370px;
2027 ankur.sing 101
		}
10484 vikram.rag 102
 
4423 phani.kuma 103
		.textlabel {
10484 vikram.rag 104
		border-top: 2px solid #99bbe8;
105
		text-align: center;
106
		}		
1961 ankur.sing 107
	</ui:style>
108
 
109
	<g:DockLayoutPanel styleName='{style.outer}' unit='EM'>
110
		<g:center>
10484 vikram.rag 111
			<g:ScrollPanel>
112
				<g:VerticalPanel>
113
					<g:HorizontalPanel>
114
						<g:cell>
115
							<g:Grid>
116
								<g:row>
117
									<g:customCell>
118
										<g:Label styleName='{style.blueLabel}'>Item id:</g:Label>
119
									</g:customCell>
120
									<g:customCell>
121
										<g:Label styleName='{style.greenLabel}' ui:field="itemId"></g:Label>
122
									</g:customCell>
123
								</g:row>
124
								<g:row>
125
									<g:customCell>
126
										<g:Label styleName='{style.blueLabel}'>Item Status:</g:Label>
127
									</g:customCell>
128
									<g:customCell>
129
										<g:Label styleName='{style.greenLabel}' ui:field="itemStatus"></g:Label>
130
									</g:customCell>
131
								</g:row>
132
								<g:row>
133
									<g:customCell>
134
										<g:Label styleName='{style.blueLabel}'>Product Group:</g:Label>
135
									</g:customCell>
136
									<g:customCell>
137
										<g:Label styleName='{style.greenLabel}' ui:field="productGroup"></g:Label>
138
									</g:customCell>
139
								</g:row>
140
								<g:row>
141
									<g:customCell>
142
										<g:Label styleName='{style.blueLabel}'>Brand:</g:Label>
143
									</g:customCell>
144
									<g:customCell>
145
										<g:TextBox styleName="{style.greenLabel}" ui:field="brand"></g:TextBox>
146
									</g:customCell>
147
								</g:row>
148
								<g:row>
149
									<g:customCell>
150
										<g:Label styleName='{style.blueLabel}'>Model Number:</g:Label>
151
									</g:customCell>
152
									<g:customCell>
153
										<g:TextBox styleName="{style.greenLabel}" ui:field="modelNumber"></g:TextBox>
154
									</g:customCell>
155
								</g:row>
156
								<g:row>
157
									<g:customCell>
158
										<g:Label styleName='{style.blueLabel}'>Model Name:</g:Label>
159
									</g:customCell>
160
									<g:customCell>
161
										<g:TextBox styleName="{style.greenLabel}" ui:field="modelName"></g:TextBox>
162
									</g:customCell>
163
								</g:row>
164
								<g:row>
165
									<g:customCell>
166
										<g:Label styleName='{style.blueLabel}'>Colour:</g:Label>
167
									</g:customCell>
168
									<g:customCell>
169
										<g:TextBox styleName="{style.greenLabel}" ui:field="color"></g:TextBox>
170
									</g:customCell>
171
								</g:row>
172
								<g:row>
173
									<g:customCell>
174
										<g:Label styleName='{style.blueLabel}'>Preferred Insurer:</g:Label>
175
									</g:customCell>
176
									<g:customCell>
177
										<g:ListBox ui:field="preferredInsurer"></g:ListBox>
178
									</g:customCell>
179
								</g:row>
180
								<g:row>
181
									<g:customCell>
182
										<g:Label styleName='{style.blueLabel}'>ASIN:</g:Label>
183
									</g:customCell>
184
									<g:customCell>
185
										<g:TextBox ui:field="asin"></g:TextBox>
186
									</g:customCell>
187
								</g:row>
188
								<g:row>
189
									<g:customCell>
190
										<g:Label styleName='{style.blueLabel}'>Website N-Day Sale:</g:Label>
191
									</g:customCell>
192
									<g:customCell>
193
										<g:TextBox styleName='{style.greenLabel}' ui:field="websiteLastNdaySale"></g:TextBox>
194
									</g:customCell>
195
								</g:row>
196
							</g:Grid>
197
						</g:cell>
198
						<g:cell>
199
							<g:Grid>
200
								<g:row>
201
									<g:customCell>
202
										<g:Label styleName='{style.blueLabel}'>Status Description</g:Label>
203
									</g:customCell>
204
									<g:customCell>
205
										<g:TextBox styleName='{style.greenLabel}' ui:field="statusDesc"></g:TextBox>
206
									</g:customCell>
207
								</g:row>
208
								<g:row>
209
									<g:customCell>
210
										<g:Label styleName='{style.blueLabel}'>Category:</g:Label>
211
									</g:customCell>
212
									<g:customCell>
213
										<g:Label styleName='{style.greenLabel}' ui:field="contentCategory"></g:Label>
214
									</g:customCell>
215
								</g:row>
216
								<g:row>
217
									<g:customCell>
218
										<g:Label styleName='{style.blueLabel}'>Comments:</g:Label>
219
									</g:customCell>
220
									<g:customCell>
221
										<g:TextBox styleName='{style.greenLabel}' ui:field="comments"></g:TextBox>
222
									</g:customCell>
223
								</g:row>
224
								<g:row>
225
									<g:customCell>
226
										<g:Label styleName='{style.blueLabel}'>Catalog Item ID:</g:Label>
227
									</g:customCell>
228
									<g:customCell>
229
										<g:Label styleName='{style.greenLabel}' ui:field="catalogItemId"></g:Label>
230
									</g:customCell>
231
								</g:row>
232
								<g:row>
233
									<g:customCell>
234
										<g:Label styleName='{style.blueLabel}'>Preferred Vendor:</g:Label>
235
									</g:customCell>
236
									<g:customCell>
237
										<g:ListBox ui:field="preferredVendor"></g:ListBox>
238
									</g:customCell>
239
								</g:row>
240
								<g:row>
241
									<g:customCell>
242
										<g:Button ui:field="comingSoonButton" text="Coming Soon"></g:Button>
243
									</g:customCell>
244
								</g:row>
245
								<g:row>
246
									<g:customCell>
247
										<g:Label styleName='{style.blueLabel}'>Coming Soon Start Date</g:Label>
248
									</g:customCell>
249
									<g:customCell>
250
										<dp:DateBox styleName='{style.greenLabel}'
251
											ui:field="comingSoonStartDate" enabled="false"></dp:DateBox>
252
									</g:customCell>
253
								</g:row>
254
								<g:row>
255
									<g:customCell>
256
										<g:Label styleName='{style.blueLabel}'>Expected Arrival Date</g:Label>
257
									</g:customCell>
258
									<g:customCell>
259
										<dp:DateBox styleName='{style.greenLabel}'
260
											ui:field="expectedArrivalDate" enabled="false"></dp:DateBox>
261
									</g:customCell>
262
								</g:row>
263
								<g:row>
264
									<g:customCell>
265
										<g:Label styleName='{style.blueLabel}'>Amazon N-Day Sale:</g:Label>
266
									</g:customCell>
267
									<g:customCell>
268
										<g:TextBox styleName='{style.greenLabel}' ui:field="amazonLastNdaySale"></g:TextBox>
269
									</g:customCell>
270
								</g:row>
271
							</g:Grid>
272
						</g:cell>
273
						<g:cell>
274
							<g:Grid>
275
								<g:row>
276
									<g:customCell>
277
										<g:Label styleName='{style.blueLabel}'>MRP:</g:Label>
278
									</g:customCell>
279
									<g:customCell width='6'>
280
										<g:TextBox styleName='{style.numeric-box}' ui:field="mrp"></g:TextBox>
281
									</g:customCell>
282
								</g:row>
283
								<g:row>
284
									<g:customCell>
285
										<g:Label styleName='{style.blueLabel}'>Selling Price:</g:Label>
286
									</g:customCell>
287
									<g:customCell size='6'>
288
										<g:TextBox styleName='{style.numeric-box}' ui:field="sellingPrice"></g:TextBox>
289
									</g:customCell>
290
								</g:row>
291
								<g:row>
292
									<g:customCell>
293
										<g:Label styleName='{style.blueLabel}'>Weight(in kg):</g:Label>
294
									</g:customCell>
295
									<g:customCell>
296
										<g:TextBox styleName='{style.numeric-box}' ui:field="weight"></g:TextBox>
297
									</g:customCell>
298
								</g:row>
299
								<g:row>
300
									<g:customCell>
301
										<g:Label styleName='{style.blueLabel}'>Expected Delay(Days):</g:Label>
302
									</g:customCell>
303
									<g:customCell>
304
										<g:TextBox styleName='{style.numeric-box}' ui:field="expectedDelay"></g:TextBox>
305
									</g:customCell>
306
								</g:row>
307
								<g:row>
308
									<g:customCell>
309
										<g:Label styleName='{style.blueLabel}'>Is Warehouse Preference Sticky:</g:Label>
310
									</g:customCell>
311
									<g:customCell>
312
										<g:CheckBox ui:field="warehouseStickiness"></g:CheckBox>
313
									</g:customCell>
314
								</g:row>
315
								<g:row>
316
									<g:customCell>
317
										<g:Label styleName='{style.blueLabel}'>Has Serial Number:</g:Label>
318
									</g:customCell>
319
									<g:customCell>
320
										<g:CheckBox ui:field="itemType"></g:CheckBox>
321
									</g:customCell>
322
								</g:row>
323
								<g:row>
324
									<g:customCell>
325
										<g:Label styleName='{style.blueLabel}'>Show Selling Price</g:Label>
326
									</g:customCell>
327
									<g:customCell>
328
										<g:CheckBox ui:field="showSellingPrice" enabled="false"></g:CheckBox>
329
									</g:customCell>
330
								</g:row>
331
								<g:row>
332
									<g:customCell>
333
										<g:Label styleName='{style.blueLabel}'>Hold Override</g:Label>
334
									</g:customCell>
335
									<g:customCell>
336
										<g:CheckBox ui:field="holdOverride"></g:CheckBox>
337
									</g:customCell>
338
								</g:row>
339
								<g:row>
340
									<g:customCell>
341
										<g:Label styleName='{style.blueLabel}'>Best Deals Details Text:</g:Label>
342
									</g:customCell>
343
									<g:customCell>
344
										<g:TextBox styleName='{style.greenLabel}' ui:field="bestDealsDetailsText"></g:TextBox>
345
									</g:customCell>
346
								</g:row>
347
								<g:row>
348
									<g:customCell>
349
										<g:Label styleName='{style.blueLabel}'>Ebay N-Day Sale:</g:Label>
350
									</g:customCell>
351
									<g:customCell>
352
										<g:TextBox styleName='{style.greenLabel}' ui:field="ebayLastNdaySale"></g:TextBox>
353
									</g:customCell>
354
								</g:row>
355
							</g:Grid>
356
						</g:cell>
357
						<g:cell>
358
							<g:Grid>
359
								<g:row>
360
									<g:customCell>
361
										<g:Label styleName='{style.blueLabel}'>Added On:</g:Label>
362
									</g:customCell>
363
									<g:customCell>
364
										<g:Label styleName='{style.greenLabel}' ui:field="addedOn"></g:Label>
365
									</g:customCell>
366
								</g:row>
367
								<g:row>
368
									<g:customCell>
369
										<g:Label styleName='{style.blueLabel}'>Start Date:</g:Label>
370
									</g:customCell>
371
									<g:customCell>
372
										<dp:DateBox styleName='{style.greenLabel}'
373
											ui:field="startDate"></dp:DateBox>
374
									</g:customCell>
375
								</g:row>
376
								<g:row>
377
									<g:customCell>
378
										<g:Label styleName='{style.blueLabel}'>Retiring Date:</g:Label>
379
									</g:customCell>
380
									<g:customCell>
381
										<g:Label styleName='{style.greenLabel}' ui:field="retireDate"></g:Label>
382
									</g:customCell>
383
								</g:row>
384
								<g:row>
385
									<g:customCell>
386
										<g:Label styleName='{style.blueLabel}'>Updated On:</g:Label>
387
									</g:customCell>
388
									<g:customCell>
389
										<g:Label styleName='{style.greenLabel}' ui:field="updatedOn"></g:Label>
390
									</g:customCell>
391
								</g:row>
392
								<g:row>
393
									<g:customCell>
394
										<g:Label styleName='{style.blueLabel}'>Has Item Number:</g:Label>
395
									</g:customCell>
396
									<g:customCell>
397
										<g:CheckBox ui:field="hasItemNo"></g:CheckBox>
398
									</g:customCell>
399
								</g:row>
400
								<g:row>
401
									<g:customCell>
402
										<g:Label styleName='{style.blueLabel}'>Best Deals Details Link:</g:Label>
403
									</g:customCell>
404
									<g:customCell>
405
										<g:TextBox styleName='{style.greenLabel}' ui:field="bestDealsDetailsLink"></g:TextBox>
406
									</g:customCell>
407
								</g:row>
408
								<g:row>
409
									<g:customCell>
410
										<g:Label styleName='{style.blueLabel}'>Freebie ItemId:</g:Label>
411
									</g:customCell>
412
									<g:customCell>
413
										<g:TextBox styleName='{style.greenLabel}' ui:field="freebieItemId"></g:TextBox>
414
									</g:customCell>
415
								</g:row>
416
								<g:row>
417
									<g:customCell>
418
										<g:Label styleName='{style.blueLabel}'>Last N Day Sale:</g:Label>
419
									</g:customCell>
420
									<g:customCell>
421
										<g:TextBox styleName='{style.greenLabel}' ui:field="lastNdaySale"></g:TextBox>
422
									</g:customCell>
423
								</g:row>
424
								<g:row>
425
									<g:customCell>
426
										<g:Label styleName='{style.blueLabel}'>Snapdeal N-Day Sale:</g:Label>
427
									</g:customCell>
428
									<g:customCell>
429
										<g:TextBox styleName='{style.greenLabel}' ui:field="snapdealLastNdaySale"></g:TextBox>
430
									</g:customCell>
431
								</g:row>
432
							</g:Grid>
433
						</g:cell>
434
						<g:cell>
435
							<g:Grid>
436
								<g:row>
437
									<g:customCell>
438
										<g:Label styleName='{style.blueLabel}'>Best Deals Text:</g:Label>
439
									</g:customCell>
440
									<g:customCell>
441
										<g:TextBox styleName='{style.greenLabel}' ui:field="bestDealsText"></g:TextBox>
442
									</g:customCell>
443
								</g:row>
444
								<g:row>
445
									<g:customCell>
446
										<g:Label styleName='{style.blueLabel}'>Best Deals Value:</g:Label>
447
									</g:customCell>
448
									<g:customCell>
449
										<g:TextBox styleName='{style.numeric-box}' ui:field="bestDealsValue"></g:TextBox>
450
									</g:customCell>
451
								</g:row>
452
								<g:row>
453
									<g:customCell>
454
										<g:Label styleName='{style.blueLabel}'>Best Selling Rank:</g:Label>
455
									</g:customCell>
456
									<g:customCell>
457
										<g:TextBox styleName='{style.numeric-box}' ui:field="bestSellingRank"></g:TextBox>
458
									</g:customCell>
459
								</g:row>
460
								<g:row>
461
									<g:customCell>
462
										<g:Label styleName='{style.blueLabel}'>Default for Entity:</g:Label>
463
									</g:customCell>
464
									<g:customCell>
465
										<g:CheckBox ui:field="defaultForEntity"></g:CheckBox>
466
									</g:customCell>
467
								</g:row>
468
								<g:row>
469
									<g:customCell>
470
										<g:Label styleName='{style.blueLabel}'>Is Risky:</g:Label>
471
									</g:customCell>
472
									<g:customCell>
473
										<g:CheckBox ui:field="risky" enabled='false'></g:CheckBox>
474
									</g:customCell>
475
								</g:row>
476
								<g:row>
477
									<g:customCell>
478
										<g:Label styleName='{style.blueLabel}'>Min StockLevel:</g:Label>
479
									</g:customCell>
480
									<g:customCell>
481
										<g:TextBox styleName='{style.numeric-box}' ui:field="minStockLevel"></g:TextBox>
482
									</g:customCell>
483
								</g:row>
484
								<g:row>
485
									<g:customCell>
486
										<g:Label styleName='{style.blueLabel}'>min Days Of Stock:</g:Label>
487
									</g:customCell>
488
									<g:customCell>
489
										<g:TextBox styleName='{style.numeric-box}' ui:field="numOfDaysStock"></g:TextBox>
490
									</g:customCell>
491
								</g:row>
492
								<g:row>
493
									<g:customCell>
494
										<g:Label styleName='{style.blueLabel}'>Hold Inventory:</g:Label>
495
									</g:customCell>
496
									<g:customCell>
497
										<g:TextBox styleName='{style.numeric-box}' ui:field="holdInventory"></g:TextBox>
498
									</g:customCell>
499
								</g:row>
500
								<g:row>
501
									<g:customCell>
502
										<g:Label styleName='{style.blueLabel}'>Default Inventory:</g:Label>
503
									</g:customCell>
504
									<g:customCell>
505
										<g:TextBox styleName='{style.numeric-box}' ui:field="defaultInventory"></g:TextBox>
506
									</g:customCell>
507
								</g:row>
508
								<g:row>
509
									<g:customCell>
510
										<g:Label styleName='{style.blueLabel}'>Flipkart N-Day Sale:</g:Label>
511
									</g:customCell>
512
									<g:customCell>
513
										<g:TextBox styleName='{style.greenLabel}' ui:field="flipkartLastNdaySale"></g:TextBox>
514
									</g:customCell>
515
								</g:row>
516
 
517
							</g:Grid>
518
						</g:cell>
519
					</g:HorizontalPanel>
520
 
521
					<g:VerticalPanel>
522
						<g:VerticalPanel styleName='{style.inventoryTable}'>
523
							<g:FlexTable ui:field='headerAvailability' styleName='{style.header}'
524
								cellSpacing='0' cellPadding='0' />
525
							<g:FlexTable ui:field='availabilityTable' styleName='{style.table}'
526
								cellSpacing='0' cellPadding='0' />
527
						</g:VerticalPanel>
528
						<g:VerticalPanel>
529
							<g:Label styleName='{style.textlabel}'>Vendor Keys</g:Label>
530
							<g:FlexTable ui:field='headerVendorItemKey'
531
								styleName='{style.header}' cellSpacing='0' cellPadding='0' />
532
							<g:FlexTable ui:field='tableVendorItemKey' styleName='{style.table}'
533
								cellSpacing='0' cellPadding='0' />
534
							<g:Label></g:Label>
535
						</g:VerticalPanel>
536
						<g:VerticalPanel>
537
							<g:Label styleName='{style.textlabel}'>Vendor Prices</g:Label>
538
							<g:FlexTable ui:field='headerVendorPrices' styleName='{style.header}'
539
								cellSpacing='0' cellPadding='0' />
540
							<g:FlexTable ui:field='tableVendorPrices' styleName='{style.table}'
541
								cellSpacing='0' cellPadding='0' />
542
						</g:VerticalPanel>
543
						<g:VerticalPanel>
544
							<g:Label styleName='{style.textlabel}'>Vouchers</g:Label>
545
							<g:FlexTable ui:field='headerVouchers' styleName='{style.header}'
546
								cellSpacing='0' cellPadding='0' />
547
							<g:FlexTable ui:field='tableVouchers' styleName='{style.table}'
548
								cellSpacing='0' cellPadding='0' />
549
						</g:VerticalPanel>
550
						<g:VerticalPanel>
551
							<g:Label styleName='{style.textlabel}'>Source Prices</g:Label>
552
							<g:FlexTable ui:field='headerSourcePrices' styleName='{style.header}'
553
								cellSpacing='0' cellPadding='0' />
554
							<g:FlexTable ui:field='tableSourcePrices' styleName='{style.table}'
555
								cellSpacing='0' cellPadding='0' />
556
						</g:VerticalPanel>
557
						<g:VerticalPanel>
558
							<g:Label styleName='{style.textlabel}'>VAT Details</g:Label>
559
							<g:FlexTable ui:field='headerVatDetails' styleName='{style.header}'
560
								cellSpacing='0' cellPadding='0' />
561
							<g:FlexTable ui:field='tableVatDetails' styleName='{style.table}'
562
								cellSpacing='0' cellPadding='0' />
563
						</g:VerticalPanel>
564
						<g:VerticalPanel>
565
							<g:Label styleName='{style.textlabel}'>Similar Items</g:Label>
566
							<g:FlexTable ui:field='headerSimilarItems' styleName='{style.header}'
567
								cellSpacing='0' cellPadding='0' />
568
							<g:FlexTable ui:field='tableSimilarItems' styleName='{style.table}'
569
								cellSpacing='0' cellPadding='0' />
570
						</g:VerticalPanel>
571
					</g:VerticalPanel>
572
					<g:VerticalPanel>
573
						<g:Label styleName='{style.textlabel}'>Inactive Inventory Sync Warehouses</g:Label>
574
						<g:FlexTable ui:field='headerIgnoredWarehouse'
575
							styleName='{style.header}' cellSpacing='0' cellPadding='0' />
576
						<g:FlexTable ui:field='tableIgnoredWarehouse'
577
							styleName='{style.table}' cellSpacing='0' cellPadding='0' />
578
					</g:VerticalPanel>
579
 
580
					<!-- <g:VerticalPanel styleName='{style.buttonContainer}'> <g:Button 
581
						ui:field="submit">Update Item</g:Button> </g:VerticalPanel> -->
582
				</g:VerticalPanel>
583
			</g:ScrollPanel>
1961 ankur.sing 584
		</g:center>
585
	</g:DockLayoutPanel>
5118 mandeep.dh 586
</ui:UiBinder>