cancel
Showing results for 
Search instead for 
Did you mean: 

How to Format the Date&time in SAPUI5 XML View..??

former_member187227
Participant

Hi All,

How to format the Date and time in sapui5 application. Formatter option is not working. Please suggest some idea. Shared the tried code also. The output from oData is:

<d:Approved_DateTime>2017-04-21T12:20:29</d:Approved_DateTime>

new sap.m.ObjectAttribute({ text:"{ path: 'Approved_DateTime', type: 'sap.ui.model.type.DateTime',formatOptions: {style: 'medium'}}" });

Expected Output:

Apr 22, 2017 12:20:29

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
new sap.m.ObjectAttribute({ 
		text:"{ 
			path: 'Approved_DateTime', 
			type: 'sap.ui.model.type.Date',
			formatOptions: {
				source: {
					pattern: 'yyyy-MM-ddTHH:mm:ss'
				},
				pattern: 'MMM dd,yyyy HH:mm:ss'
			}
		}"
});
former_member664606
Discoverer
0 Kudos

Its Working fine

Answers (0)