我正在尝试显示一个网格。在这种排序中不起作用。这是我的代码。
<div id="grid-sample"></div>
<script type="text/javascript">
Ext.create('Ext.data.Store', {
storeId:'cstore',
fields:['user', 'age', 'place'],
data: [
{"user":"joe","age":27,"place":"sydney"},
{"user":"abel","age":29,"place":"delhi"},
{"user":"fin","age":18,"place":"san jose"}
]
});
Ext.create('Ext.grid.Panel', {
title: 'Sample grid',
store: Ext.data.StoreManager.lookup('cstore'),
autoCreateViewPort: false,
layout: 'fit',
columns: [
{ text: 'Name', xtype: 'templatecolumn', tpl: '{user}' ,sortable : true },
{ text: 'Age', xtype: 'templatecolumn', tpl: '{age}' ,sortable : true },
{ text: 'Place', xtype: 'templatecolumn', tpl: '{place}',sortable : true }
],
width: 750,
renderTo: 'grid-sample'
});
</script>