BUG 8106 Adjustment on data fields of Skins List.

This commit is contained in:
Hector Cortez
2011-11-30 11:34:58 -04:00
parent e469b9dd79
commit ab56e044a5
2 changed files with 8 additions and 6 deletions

View File

@@ -256,11 +256,13 @@ function _DF(DATE_TIME, D_FORMAT)
{ {
function LZ(x){return(x<0||x>9?"":"0")+x;} function LZ(x){return(x<0||x>9?"":"0")+x;}
if (typeof FORMATS != 'undefined') { if(typeof D_FORMAT == 'undefined'){
D_FORMAT = FORMATS.dateFormat; if (typeof FORMATS != 'undefined') {
} D_FORMAT = FORMATS.dateFormat;
else { }
D_FORMAT = 'm/d/Y'; else {
D_FORMAT = 'm/d/Y';
}
} }
if (!(DATE_TIME != '')) { if (!(DATE_TIME != '')) {

View File

@@ -360,7 +360,7 @@ Ext.onReady(function(){
//Function format dates //Function format dates
showdate = function (value){ showdate = function (value){
return _DF(value); return _DF(value, 'Y-m-d');
}; };
//Funtion Handles Context Menu Opening //Funtion Handles Context Menu Opening