smartBox.searchSettings.history.timestampFormatString

Specifies the date format that is used to display the history queries timestamps in Search mode.

Example - set search history timestamp format

<div id="grid"></div>
<script>
$("#grid").kendoGrid({
  columns: [
    { field: "ProductName" },
    { field: "UnitPrice" }
  ],
  dataSource: {
    data: [
      { ProductName: "Tea", UnitPrice: 10 },
      { ProductName: "Coffee", UnitPrice: 15 }
    ]
  },
  search: {
    fields: [{ name: "ProductName", operator: "contains" }]
  },
  toolbar: ["smartBox"],
  smartBox: {
    searchSettings: {
      history: {
        timestampFormat: "yyyy-MM-dd HH:mm"
      }
    }
  }
});
</script>