如何將這些圖標行(檢查和x標記)對齊到中心?我只做了中心對齊的列標題「狀態」。解決讚賞。Extjs網格圖標行對齊中心
示例代碼:
<script>
var store = Ext.create('Ext.data.Store', {
fields: ['status'],
data: [
{ 'status' : 0 },
{ 'status' : 1 },
{ 'status' : 0 },
{ 'status' : 1 },
{ 'status' : 0 },
]
});
Ext.onReady(function(){
Ext.create('Ext.grid.Panel', {
title: 'Simpsons',
padding : '20px',
store: store,
renderTo : Ext.getBody(),
columns: [
{
text: 'Status',
dataIndex: 'status',
align : 'center',
renderer : function (value, metaData, record, rowIndex, colIndex, store) {
switch (value)
{
case 1 :
metaData.css = 'locked';
break;
case 0 :
metaData.css = 'active';
break;
}
return '';
}
}
],
height: 300,
width : 300,
layout: 'fit',
fullscreen: true
});
});
</script>
「它看起來像你的文章大多是代碼,請添加一些更多的細節」