Quantcast
Channel: SCN: Message List
Viewing all articles
Browse latest Browse all 2756

Re: Problems with date fields in ui5

$
0
0

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


Viewing all articles
Browse latest Browse all 2756

Trending Articles