nicosk
10 Dec 2011, 5:11 AM
id: 'card-1',
border: false,
items: [{
xtype: 'panel',
layout: 'hbox',
border: false,
frame: true,
items: [{
xtype: 'grid',
autoScroll: true,
selModel: csm,
title: 'Contacts',
width: 500,
store: contactStore,
columns: [{
text : 'Id',
flex : 1,
hidden : true,
dataIndex: 'id'
}, {
text : 'First Name',
flex : 1,
sortable : true,
dataIndex: 'firstName'
}, {
text : 'Last Name',
flex : 1,
sortable : true,
dataIndex: 'lastName'
}, {
text : 'Phone #',
flex : 1,
sortable : true,
dataIndex: 'phone'
}],
}, {
xtype: 'panel',
title: 'Groups',
width: 300,
height: 400,
padding : '10px'
}]
}]
}
I cannot get the vertical scrollBar to show. autoScroll in grid and scroll: true don't work
Any ideas?
border: false,
items: [{
xtype: 'panel',
layout: 'hbox',
border: false,
frame: true,
items: [{
xtype: 'grid',
autoScroll: true,
selModel: csm,
title: 'Contacts',
width: 500,
store: contactStore,
columns: [{
text : 'Id',
flex : 1,
hidden : true,
dataIndex: 'id'
}, {
text : 'First Name',
flex : 1,
sortable : true,
dataIndex: 'firstName'
}, {
text : 'Last Name',
flex : 1,
sortable : true,
dataIndex: 'lastName'
}, {
text : 'Phone #',
flex : 1,
sortable : true,
dataIndex: 'phone'
}],
}, {
xtype: 'panel',
title: 'Groups',
width: 300,
height: 400,
padding : '10px'
}]
}]
}
I cannot get the vertical scrollBar to show. autoScroll in grid and scroll: true don't work
Any ideas?