idea is expected to find Max Date in Jqx widgets grid
Date Column
05/11/2016, 10/11/2016, 15/11/2016, 20/11/2016
output
20/11/2016
Here is My Code:
$.each(data1, function (idx, value) { var dates = []; dates.push(new Date(dt)); var maxDate = new Date(Math.max.apply(null, dates)); });
alert(maxDate)