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
Example
Section titled “Example”// defaultgrid.show();// without animationgrid.show(false, false);
Details
Section titled “Details”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.