use of org.pentaho.ui.xul.containers.XulHbox in project data-access by pentaho.
the class ConnectionController method toggleSuccessDetails.
@Bindable
public void toggleSuccessDetails() {
// $NON-NLS-1$
XulHbox details = (XulHbox) document.getElementById("success_details_hider");
details.setVisible(!details.isVisible());
}
use of org.pentaho.ui.xul.containers.XulHbox in project data-access by pentaho.
the class WizardConnectionController method toggleDetails.
@Bindable
public void toggleDetails() {
// $NON-NLS-1$
XulHbox details = (XulHbox) document.getElementById("details_hider");
details.setVisible(!details.isVisible());
}
use of org.pentaho.ui.xul.containers.XulHbox in project data-access by pentaho.
the class WizardConnectionController method toggleSuccessDetails.
@Bindable
public void toggleSuccessDetails() {
// $NON-NLS-1$
XulHbox details = (XulHbox) document.getElementById("success_details_hider");
details.setVisible(!details.isVisible());
}
use of org.pentaho.ui.xul.containers.XulHbox in project data-access by pentaho.
the class ConnectionController method toggleDetails.
@Bindable
public void toggleDetails() {
// $NON-NLS-1$
XulHbox details = (XulHbox) document.getElementById("details_hider");
details.setVisible(!details.isVisible());
}