Doesn't the normal formatter work?
var listItem = new sap.m.CustomListItem({
type: sap.m.ListType.Active,
content: new sap.m.Label({
text: {
path : "content/m:properties/d:OrderId",
formatter : function(oVal) {
return "Formatted "+oVal;
}
}
});
});
Doesn't the normal formatter work?
var listItem = new sap.m.CustomListItem({
type: sap.m.ListType.Active,
content: new sap.m.Label({
text: {
path : "content/m:properties/d:OrderId",
formatter : function(oVal) {
return "Formatted "+oVal;
}
}
});
});