Uses of Class
org.apache.wicket.behavior.Behavior
-
-
Uses of Behavior in org.apache.wicket
Subclasses of Behavior in org.apache.wicket Modifier and Type Class Description class
AttributeModifier
This class allows a tag attribute of a component to be modified dynamically with a value obtained from a model object.class
ClassAttributeModifier
An AttributeModifier specialized in managing the CSS class attributeclass
StyleAttributeModifier
An AttributeModifier specialized in managing the CSS style attributeMethods in org.apache.wicket with type parameters of type Behavior Modifier and Type Method Description <M extends Behavior>
List<M>Component. getBehaviors(Class<M> type)
Gets the subset of the currently coupledBehavior
s that are of the provided type as an unmodifiable list.Methods in org.apache.wicket that return Behavior Modifier and Type Method Description Behavior
Component. getBehaviorById(int id)
Gets the behavior for the specified idMethods in org.apache.wicket that return types with arguments of type Behavior Modifier and Type Method Description List<? extends Behavior>
Component. getBehaviors()
Gets the currently coupledBehavior
s as an unmodifiable list.Methods in org.apache.wicket with parameters of type Behavior Modifier and Type Method Description Component
Component. add(Behavior... behaviors)
Adds a behavior modifier to the component.int
Component. getBehaviorId(Behavior behavior)
Gets a stable id for the specified non-temporary behavior.protected boolean
Component. isBehaviorAccepted(Behavior behavior)
Components are allowed to reject behavior modifiers.void
BehaviorInstantiationListenerCollection. onInstantiation(Behavior behavior)
void
IBehaviorInstantiationListener. onInstantiation(Behavior behavior)
Called when a behavior instance is createdComponent
Component. remove(Behavior... behaviors)
Removes behavior from componentCharSequence
Component. urlForListener(Behavior behaviour, PageParameters parameters)
Gets a URL for the listener interface on a behavior (e.g. -
Uses of Behavior in org.apache.wicket.ajax
Subclasses of Behavior in org.apache.wicket.ajax Modifier and Type Class Description class
AbstractAjaxTimerBehavior
A behavior that generates an AJAX update callback at a regular interval.class
AbstractDefaultAjaxBehavior
The base class for Wicket's default AJAX implementation.class
AjaxClientInfoBehavior
An behavior that collects the information to populate WebClientInfo's ClientProperties by using Ajaxclass
AjaxEventBehavior
An ajax behavior that is attached to a certain client-side (usually javascript) event, such as click, change, keydown, etc.class
AjaxNewWindowNotifyingBehavior
An Ajax behavior that notifies when a new browser window/tab is opened with url to a page instance which is already opened in another window/tab in the same user session.class
AjaxPreventSubmitBehavior
An Ajax behavior that could be used to prevent the form submit when the user presses the ENTER key while in an HTML <input type="text" > field.class
AjaxSelfUpdatingTimerBehavior
Automatically re-renders the component it is attached to via AJAX at a regular interval. -
Uses of Behavior in org.apache.wicket.ajax.form
Subclasses of Behavior in org.apache.wicket.ajax.form Modifier and Type Class Description class
AjaxFormChoiceComponentUpdatingBehavior
This is an Ajax behavior that is meant to update a group of choices that are represented by multiple components.class
AjaxFormComponentUpdatingBehavior
A behavior that updates the hosting FormComponent via ajax when an event it is attached to is triggered.class
AjaxFormSubmitBehavior
Ajax event behavior that submits a form via ajax when the event it is attached to, is invoked.class
AjaxFormValidatingBehavior
Ajax event behavior that submits the form and updates all form feedback panels on the page.class
OnChangeAjaxBehavior
A behavior that updates the hostingFormComponent
's model via Ajax when value of the component is changed. -
Uses of Behavior in org.apache.wicket.ajax.markup.html.navigation.paging
Subclasses of Behavior in org.apache.wicket.ajax.markup.html.navigation.paging Modifier and Type Class Description class
AjaxPagingNavigationBehavior
Ajax behavior for the paging navigation links. -
Uses of Behavior in org.apache.wicket.bean.validation
Subclasses of Behavior in org.apache.wicket.bean.validation Modifier and Type Class Description class
PropertyValidator<T>
Validator that delegates to the bean validation framework. -
Uses of Behavior in org.apache.wicket.behavior
Subclasses of Behavior in org.apache.wicket.behavior Modifier and Type Class Description class
AbstractAjaxBehavior
Abstract class for handling Ajax roundtrips.class
AttributeAppender
AttributeModifier that appends the given value, rather than replace it.Methods in org.apache.wicket.behavior that return Behavior Modifier and Type Method Description static Behavior
Behavior. onAttribute(String name, org.danekja.java.util.function.serializable.SerializableFunction<String,CharSequence> onAttribute)
Creates aBehavior
that uses the givenSerializableFunction function
to do something with a component's attribute.static Behavior
Behavior. onTag(org.danekja.java.util.function.serializable.SerializableBiConsumer<Component,ComponentTag> onTagConsumer)
Creates aBehavior
that uses the givenSerializableConsumer consumer
to do something with the component's tag. -
Uses of Behavior in org.apache.wicket.cdi
Methods in org.apache.wicket.cdi with parameters of type Behavior Modifier and Type Method Description void
BehaviorInjector. onInstantiation(Behavior behavior)
-
Uses of Behavior in org.apache.wicket.core.request.handler
Methods in org.apache.wicket.core.request.handler that return Behavior Modifier and Type Method Description Behavior
ListenerInvocationNotAllowedException. getBehavior()
Constructors in org.apache.wicket.core.request.handler with parameters of type Behavior Constructor Description ListenerInvocationNotAllowedException(Component component, Behavior behavior, String message)
Constructor -
Uses of Behavior in org.apache.wicket.core.request.handler.logger
Methods in org.apache.wicket.core.request.handler.logger that return types with arguments of type Behavior Modifier and Type Method Description Class<? extends Behavior>
ListenerLogData. getBehaviorClass()
-
Uses of Behavior in org.apache.wicket.extensions.ajax
Subclasses of Behavior in org.apache.wicket.extensions.ajax Modifier and Type Class Description class
AjaxDownloadBehavior
Download resources via Ajax.class
AjaxFileDropBehavior
Uploads files from a drop event. -
Uses of Behavior in org.apache.wicket.extensions.ajax.markup.html
Subclasses of Behavior in org.apache.wicket.extensions.ajax.markup.html Modifier and Type Class Description protected class
AjaxEditableLabel.EditorAjaxBehavior
protected class
AjaxEditableLabel.LabelAjaxBehavior
class
AjaxIndicatorAppender
A behavior that adds a span with wicket's default indicator gif to the end of the component's markup. -
Uses of Behavior in org.apache.wicket.extensions.ajax.markup.html.autocomplete
Subclasses of Behavior in org.apache.wicket.extensions.ajax.markup.html.autocomplete Modifier and Type Class Description class
AbstractAutoCompleteBehavior
class
AutoCompleteBehavior<T>
This behavior builds on top ofAbstractAutoCompleteBehavior
by introducing the concept of aIAutoCompleteRenderer
to make response writing easier. -
Uses of Behavior in org.apache.wicket.extensions.ajax.markup.html.modal
Subclasses of Behavior in org.apache.wicket.extensions.ajax.markup.html.modal Modifier and Type Class Description protected class
ModalWindow.CloseButtonBehavior
Deprecated.class
TrapFocusBehavior
Trap focus inside a component's markup. -
Uses of Behavior in org.apache.wicket.extensions.ajax.markup.html.modal.theme
Subclasses of Behavior in org.apache.wicket.extensions.ajax.markup.html.modal.theme Modifier and Type Class Description class
DefaultTheme
Default theme forModalDialog
. -
Uses of Behavior in org.apache.wicket.extensions.markup.html.form.palette.theme
Subclasses of Behavior in org.apache.wicket.extensions.markup.html.form.palette.theme Modifier and Type Class Description class
DefaultTheme
A default theme for aPalette
. -
Uses of Behavior in org.apache.wicket.extensions.markup.html.repeater.data.table
Constructors in org.apache.wicket.extensions.markup.html.repeater.data.table with parameters of type Behavior Constructor Description Col(Behavior... behaviors)
-
Uses of Behavior in org.apache.wicket.extensions.markup.html.repeater.tree.table
Subclasses of Behavior in org.apache.wicket.extensions.markup.html.repeater.tree.table Modifier and Type Class Description class
NodeBorder
A border for a node component which renders nestedDIV
s to simulate the structure of parental branches inside a tabular layout. -
Uses of Behavior in org.apache.wicket.extensions.markup.html.repeater.tree.theme
Subclasses of Behavior in org.apache.wicket.extensions.markup.html.repeater.tree.theme Modifier and Type Class Description class
HumanTheme
class
WindowsTheme
-
Uses of Behavior in org.apache.wicket.guice
Methods in org.apache.wicket.guice with parameters of type Behavior Modifier and Type Method Description void
GuiceComponentInjector. onInstantiation(Behavior behavior)
-
Uses of Behavior in org.apache.wicket.markup
Methods in org.apache.wicket.markup that return types with arguments of type Behavior Modifier and Type Method Description Iterator<? extends Behavior>
ComponentTag. getBehaviors()
Methods in org.apache.wicket.markup with parameters of type Behavior Modifier and Type Method Description void
ComponentTag. addBehavior(Behavior behavior)
Adds a behavior to this component tag. -
Uses of Behavior in org.apache.wicket.markup.html
Subclasses of Behavior in org.apache.wicket.markup.html Modifier and Type Class Description class
HTML5Attributes
Behavior which renders HTML5 attributes. -
Uses of Behavior in org.apache.wicket.markup.html.border
Subclasses of Behavior in org.apache.wicket.markup.html.border Modifier and Type Class Description class
BorderBehavior
This is a behavior implementation that can be used if you have markup that should be around a component. -
Uses of Behavior in org.apache.wicket.markup.html.form
Subclasses of Behavior in org.apache.wicket.markup.html.form Modifier and Type Class Description class
FormComponentUpdatingBehavior
A behavior to get notifications when aFormComponent
changes its value. -
Uses of Behavior in org.apache.wicket.markup.html.form.upload
Subclasses of Behavior in org.apache.wicket.markup.html.form.upload Modifier and Type Class Description class
FilesSelectedBehavior
OnChangeAjaxBehavior
that streams back to server properties of the selected file(s) (at client side), before uploading it (them). -
Uses of Behavior in org.apache.wicket.markup.html.form.validation
Subclasses of Behavior in org.apache.wicket.markup.html.form.validation Modifier and Type Class Description class
AbstractFormValidator
Base class forIFormValidator
s.class
EqualInputValidator
Validates that the input of two form components is identical.class
EqualPasswordInputValidator
Validates that the input of two form components is identical.class
FormValidatorAdapter
AdaptsIFormValidator
toBehavior
-
Uses of Behavior in org.apache.wicket.markup.html.image
Subclasses of Behavior in org.apache.wicket.markup.html.image Modifier and Type Class Description class
ContextPathGenerator
A behavior that converts the provider url fragment to a context-relative url. -
Uses of Behavior in org.apache.wicket.markup.html.link
Subclasses of Behavior in org.apache.wicket.markup.html.link Modifier and Type Class Description class
DisabledAttributeLinkBehavior
A behavior to add attribute "disabled" to a Link component when it is disabled. -
Uses of Behavior in org.apache.wicket.markup.parser.filter
Subclasses of Behavior in org.apache.wicket.markup.parser.filter Modifier and Type Class Description static class
WicketMessageTagHandler.AttributeLocalizer
Attribute localizing behavior.Fields in org.apache.wicket.markup.parser.filter declared as Behavior Modifier and Type Field Description static Behavior
RelativePathPrefixHandler. RELATIVE_PATH_BEHAVIOR
Behavior that adds a prefix to src, href and background attributes to make them context-relative -
Uses of Behavior in org.apache.wicket.markup.transformer
Subclasses of Behavior in org.apache.wicket.markup.transformer Modifier and Type Class Description class
AbstractTransformerBehavior
ABehavior
which can be added to any component.class
XsltTransformerBehavior
An IBehavior which can be added to any component except ListView. -
Uses of Behavior in org.apache.wicket.protocol.ws.api
Subclasses of Behavior in org.apache.wicket.protocol.ws.api Modifier and Type Class Description class
BaseWebSocketBehavior
A behavior that contributesWicketWebSocketJQueryResourceReference
class
WebSocketBehavior
A behavior that provides optional callbacks for the WebSocket messages (connect, message, close) -
Uses of Behavior in org.apache.wicket.request.component
Methods in org.apache.wicket.request.component that return Behavior Modifier and Type Method Description Behavior
IRequestableComponent. getBehaviorById(int id)
Gets the behavior for the specified idMethods in org.apache.wicket.request.component with parameters of type Behavior Modifier and Type Method Description int
IRequestableComponent. getBehaviorId(Behavior behavior)
Gets a stable id for the specified non-temporary behavior. -
Uses of Behavior in org.apache.wicket.spring.injection.annot
Methods in org.apache.wicket.spring.injection.annot with parameters of type Behavior Modifier and Type Method Description void
SpringComponentInjector. onInstantiation(Behavior behavior)
-
Uses of Behavior in org.apache.wicket.util.tester
Methods in org.apache.wicket.util.tester that return Behavior Modifier and Type Method Description static Behavior
WicketTesterHelper. findBehavior(Component component, Class<? extends Behavior> behaviorClass)
Methods in org.apache.wicket.util.tester with parameters of type Behavior Modifier and Type Method Description void
BaseWicketTester. invokeListener(Component component, Behavior behavior)
Simulates invoking anIRequestListener
on a component.Method parameters in org.apache.wicket.util.tester with type arguments of type Behavior Modifier and Type Method Description void
WicketTester. assertBehavior(String path, Class<? extends Behavior> expectedBehaviorClass)
Asserts that theComponent
a the given path has a behavior of the given type.static Behavior
WicketTesterHelper. findBehavior(Component component, Class<? extends Behavior> behaviorClass)
-
Uses of Behavior in org.apache.wicket.validation
Subclasses of Behavior in org.apache.wicket.validation Modifier and Type Class Description class
CompoundValidator<T>
A compoundIValidator
.class
ValidatorAdapter<T>
AdaptsIValidator
to Behavior -
Uses of Behavior in org.apache.wicket.validation.validator
Subclasses of Behavior in org.apache.wicket.validation.validator Modifier and Type Class Description class
AbstractRangeValidator<R extends Comparable<? super R> & Serializable,V extends Serializable>
Base class for validators that check if a given value falls within [min,max] range.class
DateValidator
Validator for checking if a given date falls within [min,max] range.class
RangeValidator<Z extends Comparable<? super Z> & Serializable>
Validator for checking if a given value falls within [min,max] range.class
StringValidator
Validator for checking if length of a string falls within [min,max] range. -
Uses of Behavior in org.apache.wicket.velocity
Subclasses of Behavior in org.apache.wicket.velocity Modifier and Type Class Description class
VelocityContributor
An IHeaderContributor implementation that renders a velocity template and writes it to the response.class
VelocityJavaScriptContributor
A derivation of VelocityContributor that usesIHeaderResponse.render(org.apache.wicket.markup.head.HeaderItem)
-