Hi,
use formatter function.
<Input
value="{path: 'Dates', formatter: '.myDateFormatter'}">
</Input>
and inside controller write your code for date format for example.
myDateFormatter:function(someDate){
jQuery.sap.require("sap.ui.core.format.DateFormat");
var oDateFormat = sap.ui.core.format.DateFormat.getDateInstance({pattern: "yyyy/MM/dd"});
formattedDate = oDateFormat.format(new Date(someDate));
return formattedDate;
}
regards