Skip to content

datathrottle

sets the polling interval (the time period between the completion of a network request and the next request for data)

let datathrottle: number
grid = webix.grid({
columns:[{...}, {...}],
datathrottle:500,
url:"data/data_dyn.php"
});

also check the next samples:

  • The option is used during dynamical loading and allows you to skip unnecessary data requests during fast scrolling the dataset.
  • If a new request for data will be received during the waiting period, the timer will be reset and original loading command will be ignored.

Articles