我正在尝试在面板中使用模板。模板触发器来自另一个网格项目选择。但是这段代码不起作用....
我的代码有什么问题?只需简单地复制/粘贴我的代码即可运行...任何人,您能帮我解决这个问题吗?
HTML 代码:
<html>
<head>
<link rel="stylesheet" type="text/css" href="extjs/resources/css/ext-all.css">
<script type="text/javascript" src="extjs/ext-all-debug.js">
</script>
<script type="text/javascript">
Ext.onReady(function () {
Ext.create('Ext.data.Store',{
storeId: 'letterStore',
fields: ['TitleLetter','LetterType'],
data: {
'items': [
{ 'TitleLetter' : 'Keterangan', 'LetterType' : 'Not My Type'},
{ 'TitleLetter' : 'Dua', 'LetterType' : 'Yes This is my Type' }
]
},
proxy: {
type: 'memory',
reader: {
type: 'json',
root: 'items'
}
}
});
var panel = Ext.create('Ext.panel.Panel',{
title: 'Testing',
renderTo: Ext.getBody(),
items: [
{
xtype: 'gridpanel',
title: 'Grid For TPL',
bodyPadding: 5,
listeners: {
itemclick: function(selModel, record, index, options){
var detailPanel = this.child('#detailPanel');
detailPanel().update(record.data);
}
},
store: Ext.data.StoreManager.lookup('letterStore'),
width: 300,
height: 300,
columns: [
{
xtype: 'gridcolumn',
dataIndex: 'TitleLetter',
text: 'Judul Surat'
},
{
xtype: 'gridcolumn',
dataIndex: 'LetterType',
text: 'Tipe Surat'
},
]
},
{
xtype: 'panel',
itemId: 'detailPanel',
title: 'Show TPL',
tpl: ['I am trying to use TPL {TitleLetter}']
},
]
});
});
</script>
</head>
<body>
</body>
</html>