smartBox.history.timestampFormatString

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

Example - set 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: {
    history: {
      size: 5,
      timestampFormat: "yyyy-MM-dd HH:mm"
    }
  }
});
</script>
In this article
smartBox.history.timestampFormat
Not finding the help you need?
Contact Support