Documentation

prerender

invokes the full rendering of DataTable data

boolean prerender;

Example

webix.ui({
    view:"datatable",
    prerender:true,
    ...
});

See also

Details
  • The parameter doesn't give advantages for non-touch devices (slower than with a standard data loading).
  • On touch devices it allows you to get a bit more smooth scrolling (anyway, it's not usable with big datasets)
  • Not related to dynamical loading.
Back to top