This commit is contained in:
Roly Rudy Gutierrez Pinto
2019-06-06 08:19:54 -04:00
committed by Julio Cesar Laura Avendaño
parent c95280fe2a
commit 3e7aa8be5b
5 changed files with 44 additions and 24 deletions

View File

@@ -212,14 +212,21 @@
)
});
startDateRender = function(v){
var dateString = "-";
if(v != "-" && v != null){
dateString = _DF(v,"m/d/Y H:i:s");
}
/**
* This applies the date format from the global configuration.
* @param {String} value
* @return {String}
*/
startDateRender = function (value) {
var dateString,
date;
dateString = "-";
if (value !== "-" && value !== null) {
date = convertDate(value);
dateString = date.dateFormat(FORMATS.casesListDateFormat);
}
return dateString;
}
}
actionRenderingTranslation = function(v){
var actionTranslate = "";