Extjs 在GridPanel中顯示圖示的方法

tttjjjlll發表於2012-01-04
{header:'名稱',width:200,sortable:true,dataIndex:'appname'},
{header:'圖示',width:350,sortable:true,dataIndex:'appico',renderer:function(data, metadata, record, rowIndex, columnIndex, store) {
var data = record.data ;
var url = data.appico;
return String.format('<input id="show" type=image width=25 height=25 src='+url+' title="show"/>');
}},

給相應的列寫個renderer即可

相關文章