use of org.pentaho.mantle.client.commands.ShowBrowserCommand in project pentaho-platform by pentaho.
the class MantleController method showNavigatorClicked.
@Bindable
public void showNavigatorClicked() {
boolean show = !model.isShowNavigatorSelected();
// toggle first
model.setShowNavigatorSelected(show);
ShowBrowserCommand showBrowserCommand = new ShowBrowserCommand(show);
showBrowserCommand.execute();
}
Aggregations