xtemplate调用自定义函数

xtemplate具体使用可参见API,这里只列出调用自定义函数的方法。(API例子是放进for循环中调用的)。
var tpl = new Ext.XTemplate(
'<div style="margin-left:80px;width:90%;">'
+ '省份:{value1:this.getNewValue()}'
+ '</div>'
		);
tpl.getNewValue=function(value){
  //do sth.
  return newValue				
}

你可能感兴趣的:(ext)