I have a simple example:
我有一个简单的例子:
function RenderTime(v) {
var test = new Ext.Img({
src: "lib/Image/Paddle.png",
listeners: {
el: {
click: function() {
Ext.Msg.alert("Message");
}
}
}
})
return '<table width="100%"><tr><td width="90%">' + test + '</td></tr></table>'
}
functi