Is there any buffered type datatable?

I mean data should get load into store chunk by chunk.

Each chunk should make webservice call with some limit.

Hey @webix_B_123, are you talking about dynamic loading here? When implemented, the component’s DataStore will gradually fill up with the loaded objects, and the loading is done in “chunks”, so to speak.

Here is an example of dynamic loading using a datatable: https://snippet.webix.com/xjcrdoxh.

Exactly!
I am taking about this.

Please refer to the following articles to get more information about dynamic loading and the ways to implement it into your project: https://docs.webix.com/desktop__plain_dynamic_loading.html and https://docs.webix.com/datatable__loading_data.html#loadingbigdatasetsdynamic.

It is pretty straightforward to do on the client-side by simply specifying a url property or by using the load method:

webix.ui({
    id:"dview",
    view:"dataview",
    url:"data/data_dyn.php"
});
//or
$$("dview").load("data/data_dyn.php");

All you need to do after that is to tune your server-side response (the specifics are mentioned in the articles provided above).