如何使用extjs
将按钮而不是文本用作网格面板中的链接以下代码暗示指向不同页面的链接,我需要将“填充”链接作为按钮...请帮助我任何人
var text = 'Fill'
if(value != undefined && value !='') {
text = Ext.Date.format(value,'Y-m-d');
}
return '<span class="grid_link">'+text+'</span>';
答案 0 :(得分:0)
尝试使用 renderTo 组件属性
return '<span class="grid_link"><div id="btn"/></span>';
...
Ext.create('Ext.Button', {
text: 'Click me',
renderTo: 'btn',
handler: function() {
alert('You clicked the button!')
}
});