function timeFormatter(value) {
var da = new Date(parseInt(value.replace("/Date(", "").replace(")/" , "").split( "+")[0]));
return da.getFullYear() + "-" + (da.getMonth() + 1) + "-" + da.getDate();
// + " " + da.getHours() + ":" + da.getMinutes() + ":" + da.getSeconds();
}
var da = new Date(parseInt(value.replace("/Date(", "").replace(")/" , "").split( "+")[0]));
return da.getFullYear() + "-" + (da.getMonth() + 1) + "-" + da.getDate();
// + " " + da.getHours() + ":" + da.getMinutes() + ":" + da.getSeconds();
}