datathrottle
sets the polling interval (the time period between the completion of a network request and the next request for data)
number datathrottle;
Example
webix.ui({
view:"datatable",
...
datathrottle:500
});
Related samples
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
Back to top