我在 extjs4 工作。我有带有链接的gridview=
{
margin : '10 0 5 100',
xtype : 'grid',
id : 'g2',
store : 'qb.qbquestionoptionStore',
columns : [ {
text : 'Options',
dataIndex : 'option',
flex : 1
}, {
text : 'Answer',
dataIndex : 'isAnswer',
flex : 2.5
},
{header : 'edit',
renderer : function(val) {
//return '<a href="#" id="edit">Edit</a>';
return '<a href="#" onclick=" ">Edit</a>';
}}}
所以点击上面的链接我想调用控制器的动作。那么如何实现呢?我有我的 app.js 作为-
Ext.application({
requires: ['Ext.container.Viewport'],
name: 'Balaee',
appFolder: 'app',
controllers: [ 'Balaee.controller.qb.qbquestionController'
],
launch: function() {
Ext.create('Ext.container.Viewport',
{
//id:'mainId',
layout: 'auto',
items: {xtype:'editView'}
});
}
});
我试过——“'编辑';” 但它给了我错误,因为“Balaee.app 未定义”。所以我需要做什么