limit

sets the maximum number of items loaded when the user opens a folder

number limit;

Example

webix.ui({
    view: "docmanager",
    url: "path-to-fs",
    // only up to 100 items will be loaded from the server to each folder
    // a corresponding warning badge will appear in the UI
    limit: 100,
})

Related samples

Details

The parameter limits the number of items that are loaded when the user opens a folder or searches for files/folders.

Back to top