Documentation

showItem

scrolls the component to make the specified item visible

void showItem(id id);

Parameters

ididthe item's id

See also

Example

list = webix.ui({
    view:"list",
    ...
});
list.showItem('item1'); // 'item1' is the item's id

Details

For menu, showItem call can be used to revert hideItem call, it makes item in qustion visible.

Back to top