sets the maximum number of items loaded when the user opens a folder
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,
})
The parameter limits the number of items that are loaded when the user opens a folder or searches for files/folders.
Back to top