我的数据库中有一个状态数据字段,我需要在jquery jtable上显示不同格式的数据,如果数据为1则显示红色按钮,如果数据为0则显示绿色按钮。我怎样才能在jquery jtable中这样做?
答案 0 :(得分:0)
publish: {
title: '',
width: '0.65%',
list: true,
sorting:false,
type: 'radiobutton',
options: { '1': 'Publish', '0': 'Unpublish' },
display: function (data) {
//alert(data.record.publish);
if(data.record.publish == '1'){
return '<button id="un" style = "width:90px; max-width:90px; text-align:center;" class="btn btn-danger" title="Unpublish Post" type="button" onclick="changeStatus('+data.record.OID+');">Unpublish</button>';
}
else {
return '<button id="pub" style= "max-width:90px; width:90px; text-align:center;" class="btn btn-success" title="Publish Post" type="button" onclick="changeStatus('+data.record.OID+');">Publish</button>';
}
}
}