I am a beginner with SAPUI5, im trying to bind an attribute adding an string before it but i can't get it. I don't know what is wrong any can help me?
var oObjectHeader = new sap.m.ObjectHeader({
title: "{Name}",
number: "ID: {ID}",
attributes: [
new sap.m.ObjectAttribute({
text: "{Address/Country}"
})
]
});
if i delete the string before the curly brackets this work fine but i don't want to achieve this without the string before.
Is possible to do that? Regards,