http://jsbin.com/pihijadopa/1/edit
oTable.addColumn(new sap.ui.table.Column({
label: new sap.ui.commons.Label({text: "Image"}),
template: new sap.m.HBox({ items : [
new sap.ui.commons.Image(
{
visible: {
parts : ['src'],
formatter : function(src) {
return (src!="") ? true : false;
}
}
}
).bindProperty("src", "src"),
new sap.ui.commons.TextView(
{
visible: {
parts : ['src'],
formatter : function(src) {
return (src==="");
}
},
text : "No image"
}
)
]}),
width: "75px",
hAlign: "Center"
}));