Uses of Class
org.apache.wicket.behavior.AbstractHeaderContributor

Packages that use AbstractHeaderContributor
org.apache.wicket.ajax   
org.apache.wicket.ajax.form   
org.apache.wicket.ajax.markup.html.navigation.paging   
org.apache.wicket.behavior   
org.apache.wicket.extensions.ajax.markup.html   
org.apache.wicket.extensions.ajax.markup.html.autocomplete   
org.apache.wicket.util.template Resource extensions that make working with header contributions easier and more maintainable. 
 

Uses of AbstractHeaderContributor in org.apache.wicket.ajax
 

Subclasses of AbstractHeaderContributor in org.apache.wicket.ajax
 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 AjaxEventBehavior
          An ajax behavior that is attached to a certain client-side (usually javascript) event, such as onClick, onChange, onKeyDown, etc.
 class AjaxSelfUpdatingTimerBehavior
          Automatically re-renders the component it is attached to via AJAX at a regular interval.
 

Uses of AbstractHeaderContributor in org.apache.wicket.ajax.form
 

Subclasses of AbstractHeaderContributor in org.apache.wicket.ajax.form
 class AjaxFormChoiceComponentUpdatingBehavior
          This is a Ajax Component Update Behavior that is meant for choices/groups that are not one component in the html but many.
 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 hosting FormComponent via ajax when value of the component is changed.
 

Uses of AbstractHeaderContributor in org.apache.wicket.ajax.markup.html.navigation.paging
 

Subclasses of AbstractHeaderContributor in org.apache.wicket.ajax.markup.html.navigation.paging
 class AjaxPagingNavigationBehavior
          Ajax behavior for the paging navigation links.
 

Uses of AbstractHeaderContributor in org.apache.wicket.behavior
 

Subclasses of AbstractHeaderContributor in org.apache.wicket.behavior
 class AbstractAjaxBehavior
          Abstract class for handling Ajax roundtrips.
 class CssHeaderContributor
           
 class CssLocationHeaderContributor
          Returns a new instance of a header contributor referencing a CSS file using one of the following schemes: Starts with http:// or https:// for an external reference. Starts with "/" for an absolute reference that Wicket will not rewrite. Starts with anything else, which Wicket will automatically prepend to make relative to the context root of your web-app.
 class CssReferenceHeaderContributor
           
 class JavascriptHeaderContributor
           
 class JavascriptLocationHeaderContributor
          Returns a new instance of a header contributor referencing a CSS file using one of the following schemes: Starts with http:// or https:// for an external reference. Starts with "/" for an absolute reference that Wicket will not rewrite. Starts with anything else, which Wicket will automatically prepend to make relative to the context root of your web-app.
 class JavascriptReferenceHeaderContributor
           
 class StringHeaderContributor
          A simple header contributor that just spits out the string it is constructed with as a header contribution.
 

Methods in org.apache.wicket.behavior that return AbstractHeaderContributor
static AbstractHeaderContributor HeaderContributor.forCss(java.lang.Class<?> scope, java.lang.String path)
          Returns a new instance of HeaderContributor with a header contributor that references a CSS file that lives in a package.
static AbstractHeaderContributor HeaderContributor.forCss(java.lang.Class<?> scope, java.lang.String path, java.lang.String media)
          Returns a new instance of HeaderContributor with a header contributor that references a CSS file that lives in a package.
static AbstractHeaderContributor HeaderContributor.forCss(ResourceReference reference)
          Returns a new instance of HeaderContributor with a header contributor that references a CSS file that lives in a package.
static AbstractHeaderContributor HeaderContributor.forCss(ResourceReference reference, java.lang.String media)
          Returns a new instance of HeaderContributor with a header contributor that references a CSS file that lives in a package.
static AbstractHeaderContributor HeaderContributor.forCss(java.lang.String location)
          Returns a new instance of HeaderContributor with a header contributor referencing a CSS file using one of the following schemes: Starts with http:// or https:// for an external reference. Starts with "/" for an absolute reference that Wicket will not rewrite. Starts with anything else, which Wicket will automatically prepend to make relative to the context root of your web-app.
static AbstractHeaderContributor HeaderContributor.forCss(java.lang.String location, java.lang.String media)
          Returns a new instance of HeaderContributor with a header contributor referencing a CSS file using one of the following schemes: Starts with http:// or https:// for an external reference. Starts with "/" for an absolute reference that Wicket will not rewrite. Starts with anything else, which Wicket will automatically prepend to make relative to the context root of your web-app.
static AbstractHeaderContributor HeaderContributor.forJavaScript(java.lang.Class<?> scope, java.lang.String path)
          Returns a new instance of HeaderContributor with a header contributor that references a java script file that lives in a package.
static AbstractHeaderContributor HeaderContributor.forJavaScript(ResourceReference reference)
          Returns a new instance of HeaderContributor with a header contributor that references a java script file that lives in a package.
static AbstractHeaderContributor HeaderContributor.forJavaScript(java.lang.String location)
          Returns a new instance of HeaderContributor with a header contributor referencing a java script file using one of the following schemes: Starts with http:// or https:// for an external reference. Starts with "/" for an absolute reference that Wicket will not rewrite. Starts with anything else, which Wicket will automatically prepend to make relative to the context root of your web-app.
 

Uses of AbstractHeaderContributor in org.apache.wicket.extensions.ajax.markup.html
 

Subclasses of AbstractHeaderContributor in org.apache.wicket.extensions.ajax.markup.html
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.
 class WicketAjaxIndicatorAppender
          Deprecated. Use AjaxIndicatorAppender instead.
 

Uses of AbstractHeaderContributor in org.apache.wicket.extensions.ajax.markup.html.autocomplete
 

Subclasses of AbstractHeaderContributor in org.apache.wicket.extensions.ajax.markup.html.autocomplete
 class AbstractAutoCompleteBehavior
           
 class AutoCompleteBehavior<T>
          This behavior builds on top of AbstractAutoCompleteBehavior by introducing the concept of a IAutoCompleteRenderer to make response writing easier.
 

Uses of AbstractHeaderContributor in org.apache.wicket.util.template
 

Subclasses of AbstractHeaderContributor in org.apache.wicket.util.template
 class TextTemplateHeaderContributor
          A header contributor that will contribute the contents of the given template interpolated with the provided Map of variables.
 



Copyright © 2004-2010 Apache Software Foundation. All Rights Reserved.