List of usage examples for org.apache.wicket Component isEnabledInHierarchy
public boolean isEnabledInHierarchy()
From source file:org.opensingular.form.wicket.behavior.DisabledClassBehavior.java
License:Apache License
public boolean isEnabled(Component component) { return !component.isEnabledInHierarchy(); }
From source file:org.wicketstuff.datetime.extensions.yui.calendar.DatePicker.java
License:Apache License
/** * {@inheritDoc}//ww w . ja v a2s .co m */ @Override public boolean isEnabled(final Component component) { return component.isEnabledInHierarchy(); }