-
Notifications
You must be signed in to change notification settings - Fork 0
/
AllNonCustomHampersGrid.js
98 lines (89 loc) · 3.52 KB
/
AllNonCustomHampersGrid.js
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
/*
* File: app/view/AllNonCustomHampersGrid.js
*
* This file was generated by Sencha Architect version 3.0.4.
* http://www.sencha.com/products/architect/
*
* This file requires use of the Ext JS 4.2.x library, under independent license.
* License of Sencha Architect does not include license for Ext JS 4.2.x. For more
* details see http://www.sencha.com/license or contact license@sencha.com.
*
* This file will be auto-generated each and everytime you save your project.
*
* Do NOT hand edit this file.
*/
Ext.define('cobuy.view.AllNonCustomHampersGrid', {
extend: 'Ext.grid.Panel',
alias: 'widget.allnoncustomhampersgrid',
requires: [
'Ext.grid.RowNumberer',
'Ext.grid.View'
],
height: 250,
width: 400,
store: 'AllNonCustomHampers',
initComponent: function() {
var me = this;
Ext.applyIf(me, {
columns: [
{
xtype: 'rownumberer',
width: 50,
dataIndex: 'string',
text: 'S/n'
},
{
xtype: 'gridcolumn',
width: 300,
dataIndex: 'name',
text: 'Hamper Label'
},
{
xtype: 'gridcolumn',
width: 300,
dataIndex: 'description',
text: 'Description'
},
{
xtype: 'gridcolumn',
width: 200,
dataIndex: 'code',
text: 'Product Code'
},
{
xtype: 'gridcolumn',
renderer: function(value, metaData, record, rowIndex, colIndex, store, view) {
var userStore = Ext.getStore('AllMembers');
var user = userStore.findRecord('id', value);
if(user.get('middlename') === null || user.get('middlename') === undefined){
var name = user.get('firstname') + " " + user.get('lastname');
}else{
var name = user.get('firstname') + " " + user.get('middlename') + " " + user.get('lastname');
}
return user!== null ? name: value;
},
width: 300,
dataIndex: 'create_user_id',
text: 'Created By'
},
{
xtype: 'gridcolumn',
renderer: function(value, metaData, record, rowIndex, colIndex, store, view) {
var userStore = Ext.getStore('AllMembers');
var user = userStore.findRecord('id', value);
if(user.get('middlename') === null || user.get('middlename') === undefined){
var name = user.get('firstname') + " " + user.get('lastname');
}else{
var name = user.get('firstname') + " " + user.get('middlename') + " " + user.get('lastname');
}
return user!== null ? name: value;
},
width: 300,
dataIndex: 'update_user_id',
text: 'Updated By'
}
]
});
me.callParent(arguments);
}
});