HI Krish;
You need extend the application for this.
In the controller of this view (in case of version one it is S3) check for the function loadList: function().
Inside this you will find this.formatTime() function call. The formatTime() function is also present in the same controller and this formats the time in the output format.
It looks something like this.
formatTime: function(t) { var a = t * 60; var h = Math.floor(a / 60).toString(); if (h.length === 1) { h = "0" + h; } var m = (a % 60).toFixed(0); if (m.length === 1) { m = "0" + m; } var b = h + ":" + m; return b; },
Extend the controller and implement this method in your extended custom application according to your requirement.
Regards,
Sarbjeet Singh