Ext.create('Ext.grid.Panel', {
id: "empDetails",
store: store,
columns: [{
text: "Name",
dataIndex: 'Name'
}, {
text: "Age",
dataIndex: 'Age'
}],
renderTo: 'example-grid',
forceFit: true,
width: 300,
***getTotalHeight: function() {
return "auto";
},***
dockedItems: [{
xtype: 'toolbar',
items: [{
text: 'Employee Details'
}
]
}]
});