我正在学习大片,我很想知道如何在小组内添加一个XTemplate。 下面的法典是我迄今为止的工作,但应用功能并不取代{名}和{}的手工艺或21。 我假定我会做一些事情,或者说我不会适当使用Xtemplate。 任何建议?
var tpl = new Ext.XTemplate( Name: {name}<br>Age: {age} );
tpl.apply({
name: smith ,
age:21
});
tpl.compile();
var northEastPanel = new Ext.Panel({
flex: 1,
autoHeight:true,
border:false,
frame:true,
layout: form ,
items:[tpl]
});
感谢 Y_Y