Skip to content

show

makes the component visible

function show(
// when set to true, the command will show not only the current view but all the parent views as well (can be used for nested tabviews or nested mutliviews)
force?: boolean,
// enables/disables animation during view showing (details below)
animation?: boolean
): void
// default
grid.show();
// without animation
grid.show(false, false);

This method helps showing the views that are hidden with:

To show a view initially, you can also set the hidden parameter in the view constructor to true.