The Issue I am seeing is that not all the data is being sorted correctly in this instance it looks like it is ignoring the AM / PM and is sorting strictly off the numerical value of the hours minutes and seconds. I have also attached a snippet of code below is there something I need to do differently or is this possibly a Kendo UI bug
{
  title : "Start Date",
  field : "startDate",
  width : 150,
  template : "#= (startDate==null? '': kendo.toString(new Date(startDate),'MM/dd/yyyy hh:mm tt')) #",
  format : "{0: MM/dd/yyyy hh:mm tt}",
  filterable : {
                 ui : "datetimepicker"
               }
},
{
  title : "Error Date",
  field : "errorDate",
  width : 150,
  template : "#= (errorDate==null? '': kendo.toString(new Date(errorDate),'MM/dd/yyyy hh:mm tt')) #",
  format : "{0: MM/dd/yyyy hh:mm tt}",
  filterable : {
               ui : "datetimepicker"
               }
}

 
     
    