JqGrid自定义(图片)列

$("#gridTable").jqGrid({
    //...其它属性
    colModel: [
            //...其它列
            { name: 'dsource_alarm', index: 'dsource_alarm',  30, align: "center", sortable: false, editable: false, formatter: alarmFormatter }
            
    ]
});
    
//自定义报警列格式
function alarmFormatter(cellvalue, options, rowdata)
{
    if (cellvalue != "0")
        return '<img class="alarmimg" src="../Images/128x128/RedLight.png" alt="' + cellvalue + '" />';
    else 
        return '<img class="alarmimg" src="../Images/128x128/GreenLight.png" alt="' + cellvalue + '" />';
}

原文链接】  【参考链接

原文地址:https://www.cnblogs.com/GoCircle/p/7493565.html