cellmaker:
{
binding: 'image1', header: 'Style_Image', cssClass: 'subimgbox', width: 130,
cellTemplate: wjCellMaker.makeImage({
label: 'image for ${item.image1}',
attributes: { alt: 'N' },
click: (e, ctx) => {
showLargerImage(ctx.item.prodNo, ctx.item.image1);
}
})
},
columnLayout 变成了仅绑定对应的字段:
{"width":130,"header":"Style_Image","binding":"image1","dataType":1,"isReadOnly":true,"cssClass":"subimgbox"},
|