我(非常)是 ExtJS 的新手,我正在尝试将图片添加到我的网格的一个字段中。我已经在谷歌上寻找一些结果或提示,我发现了“渲染功能”但它不起作用(我的意思是,也许我只是用错了)
这是我的代码:
Ext.define('AM.view.user.List' ,{
extend: 'Ext.grid.Panel',
alias: 'widget.userlist',
title: 'Test ',
store: 'Users',
initComponent: function() {
this.columns = [
{header: 'ID du CPE', dataIndex: 'ID', flex: 1},
{header: 'Modèle', dataIndex: 'Modele', flex: 1},
{header: 'Firmware', dataIndex: 'firmware', flex: 1},
{header: 'Année MeS', dataIndex: 'annee', flex: 1},
{header: 'Statut', dataIndex: 'statut', flex: 1},
{header: 'Alerte', dataIndex: 'alerte', flex: 1}
];
this.callParent(arguments);
}
});
Json 文件填充所有这些字段,但“警报”除外。这就是我想添加图片的地方(此字段中没有文字,只有图片)。
在此先感谢,我希望我尽可能清楚!
文森特