Examples of determineVisibility()


Examples of org.apache.wicket.Component.determineVisibility()

    Component controller = container.get(childId.toString());
    checkChildComponent(controller, childId);

    // set the enclosure visibility
    setVisible(controller.determineVisibility());

    // transfer visibility to direct children
    applyEnclosureVisibilityToChildren(container, markupStream, enclosureOpenTag);

    warnAboutFormComponentsInsideEnclosure(container, markupStream, enclosureOpenTag);
View Full Code Here

Examples of org.apache.wicket.Component.determineVisibility()

    boolean bodyVisible = true;
    Component cursor = body;
    while (cursor != this && bodyVisible)
    {
      bodyVisible = cursor.determineVisibility();
      cursor = cursor.getParent();
    }
    return bodyVisible;
  }
}
View Full Code Here

Examples of org.apache.wicket.Component.determineVisibility()

  }

  private void ensureEnclosureIsVisible(final String enclosurePath, Page ajaxPage)
  {
    Component enclosure = ajaxPage.get(enclosurePath);
    assertTrue("Is not visible", enclosure.determineVisibility());
  }

  private void ensureEnclosureIsInVisible(final String enclosurePath, Page ajaxPage)
  {
    Component enclosure = ajaxPage.get(enclosurePath);
View Full Code Here

Examples of org.apache.wicket.Component.determineVisibility()

  private void ensureEnclosureIsInVisible(final String enclosurePath, Page ajaxPage)
  {
    Component enclosure = ajaxPage.get(enclosurePath);
    if (enclosure != null)
    {
      assertFalse("Is visible", enclosure.determineVisibility());
    }
  }

  protected void assertVisible(Label label, boolean checkAlsoMarkup)
  {
View Full Code Here

Examples of org.apache.wicket.Component.determineVisibility()

    Component controller = container.get(childId.toString());
    checkChildComponent(controller, childId);

    // set the enclosure visibility
    setVisible(controller.determineVisibility());

    // transfer visibility to direct children
    applyEnclosureVisibilityToChildren(container, markupStream, enclosureOpenTag);

    warnAboutFormComponentsInsideEnclosure(container, markupStream, enclosureOpenTag);
View Full Code Here

Examples of org.apache.wicket.Component.determineVisibility()

  }

  private void ensureEnclosureIsVisible(final String enclosurePath, Page ajaxPage)
  {
    Component enclosure = ajaxPage.get(enclosurePath);
    assertTrue("Is not visible", enclosure.determineVisibility());
  }

  private void ensureEnclosureIsInVisible(final String enclosurePath, Page ajaxPage)
  {
    Component enclosure = ajaxPage.get(enclosurePath);
View Full Code Here

Examples of org.apache.wicket.Component.determineVisibility()

  private void ensureEnclosureIsInVisible(final String enclosurePath, Page ajaxPage)
  {
    Component enclosure = ajaxPage.get(enclosurePath);
    if (enclosure != null)
    {
      assertFalse("Is visible", enclosure.determineVisibility());
    }
  }

  protected void assertVisible(Label label, boolean checkAlsoMarkup)
  {
View Full Code Here

Examples of org.apache.wicket.Component.determineVisibility()

    boolean bodyVisible = true;
    Component cursor = body;
    while (cursor != this && bodyVisible)
    {
      bodyVisible = cursor.determineVisibility();
      cursor = cursor.getParent();
    }
    return bodyVisible;
  }
}
View Full Code Here

Examples of org.apache.wicket.Component.determineVisibility()

    Component controller = container.get(childId.toString());
    checkChildComponent(controller);

    // set the enclosure visibility
    setVisible(controller.determineVisibility());

    // transfer visibility to direct children
    applyEnclosureVisibilityToChildren(container, markupStream, enclosureOpenTag);

    // render components inside the enclosure if its visible or skip it if it is not
View Full Code Here

Examples of org.apache.wicket.Component.determineVisibility()

  }

  private void ensureEnclosureIsVisible(final String enclosurePath, Page ajaxPage)
  {
    Component enclosure = ajaxPage.get(enclosurePath);
    assertTrue("Is not visible", enclosure.determineVisibility());
  }

  private void ensureEnclosureIsInVisible(final String enclosurePath, Page ajaxPage)
  {
    Component enclosure = ajaxPage.get(enclosurePath);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.