datathrottle
sets the polling interval (the time period between the completion of a network request and the next request for data)
let datathrottle: number
Example
Section titled “Example”grid = webix.grid({ columns:[{...}, {...}], datathrottle:500, url:"data/data_dyn.php"});
also check the next samples:
Details
Section titled “Details”- 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.
See also
Section titled “See also”Articles