我想在Ext Js的网格视图中在运行时添加URL,然后单击此URL将在同一页面的另一个面板上打开一个新表单。
答案 0 :(得分:1)
为您的列配置renderer
。如果您的模型中有url
字段,则可能是这样的:
columns: [
{
dataIndex: 'url'
,text: "URL"
,renderer: function(value) {
return Ext.isEmpty(value)
? ''
: '<a href="' + value + '" target="_blank">' + value + '</a>';
}
}
...
]