Documentation

datafetch

defines the number of records that will be loaded into datatable during the next dynamic loading call

number datafetch;

Example

webix.ui({
    view:"datatable",
    columns:[],
    datafetch:30,
    ..      
});

See also

Details

The value defaults to 50.

Back to top