Ext.define('demo.view.panel.Due',{
extend:'Ext.grid.Panel',
xtype:'due',
frame:true,
title:'特别约定',
width: 100,
collapsible: true,
scrollable:true,
tools:[],
bodyStyle: 'background:#ffffff; padding:1px;',
bodyPadding:3,
store:'app',
columns:[
{header:'id',width:100,dataIndex:'id',hidden:true},
{header:'约定代码',width:100,dataIndex:'due_id'},
{header:'约定名称',width:100,dataIndex:'due_name'},
{header:'约定内容',width:300,dataIndex:'due_content'}
],
buttons:{
align:'center',
items:[
{
text:'增加',
handler:function(){
Ext.Msg.alert("增加","增加成功");
}
},
{
text:'删除',
handler:function(){
Ext.Msg.alert("删除","删除成功");
}
}
]
}
})
store文件下有这个文件,但报错找不到