undoLimit

limit of the number of operations to revert

number undoLimit;

Example

webix.ui({
    view:"datatable",
    data:dataset,
        autoConfig:true,
    undo:true,
        undoLimit:40
});


Default value:

20
Details

You can set it to Infinity if you want no limit at all.

See also
Back to top