smartBox.searchSettings.delayNumber(default: 300)

Determines the delay in milliseconds between the user typing a new search value and the component emitting the search event.

Example - set search delay

<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: {
      delay: 500
    }
  }
});
</script>
In this article
smartBox.searchSettings.delay
Not finding the help you need?
Contact Support