datathrottle
sets the polling interval (the time period between the completion of a network request and the next request for data)
number datathrottle;
Example
grid = webix.ui({
    view:"datatable",
    columns:[{...}, {...}],
    datathrottle:500,
    url:"data/data_dyn.php"
});
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