Uses of Class
wicket.markup.html.WebMarkupContainer

Packages that use WebMarkupContainer
wicket.ajax.markup.html   
wicket.ajax.markup.html.form   
wicket.ajax.markup.html.navigation.paging   
wicket.markup.html Base package of HTML markup. 
wicket.markup.html.border Border components. 
wicket.markup.html.debug   
wicket.markup.html.form HTML Forms and form components. 
wicket.markup.html.form.upload Support for upload forms (using multipart requests). 
wicket.markup.html.form.validation Support for form validation. 
wicket.markup.html.internal   
wicket.markup.html.link Link components. 
wicket.markup.html.list List components for tabular data and such. 
wicket.markup.html.navigation.paging   
wicket.markup.html.panel Panel components. 
wicket.markup.html.resources Support classes for HTML specific resources. 
wicket.markup.html.tree Package for Tree components. 
wicket.markup.resolver Resolvers implement the IComponentResolver interface and must be registered with the application. 
wicket.util.tester A package with utility classes to ease unit testing of Wicket applications without the need for a servlet container. 
 

Uses of WebMarkupContainer in wicket.ajax.markup.html
 

Subclasses of WebMarkupContainer in wicket.ajax.markup.html
 class AjaxFallbackLink
          An ajax link that will degrade to a normal request if ajax is not available or javascript is disabled
 class AjaxLink
          A component that allows a trigger request to be triggered via html anchor tag
 

Uses of WebMarkupContainer in wicket.ajax.markup.html.form
 

Subclasses of WebMarkupContainer in wicket.ajax.markup.html.form
 class AjaxCheckBox
          A CheckBox which is updated via ajax when the user changes its value
 class AjaxSubmitLink
          A link that submits a form via ajax.
 

Uses of WebMarkupContainer in wicket.ajax.markup.html.navigation.paging
 

Subclasses of WebMarkupContainer in wicket.ajax.markup.html.navigation.paging
 class AjaxPagingNavigation
          An ajaxified navigation for a PageableListView that holds links to other pages of the PageableListView.
 class AjaxPagingNavigationIncrementLink
          An incremental Ajaxian link to a page of a PageableListView.
 class AjaxPagingNavigationLink
          An Ajax version of a link to a page of a PageableListView.
 class AjaxPagingNavigator
          A Wicket panel component to draw and maintain a complete page navigator, meant to be easily added to any PageableListView.
 

Uses of WebMarkupContainer in wicket.markup.html
 

Subclasses of WebMarkupContainer in wicket.markup.html
 class WebMarkupContainerWithAssociatedMarkup
           
static class WebMarkupContainerWithAssociatedMarkup.HeaderPartContainer
          For each wicket:head tag a HeaderPartContainer is created and added to the HtmlHeaderContainer which has been added to the Page.
 

Methods in wicket.markup.html that return WebMarkupContainer
 WebMarkupContainer BodyContainer.getBodyContainer()
          Get the real body container (WebMarkupContainer)
 

Uses of WebMarkupContainer in wicket.markup.html.border
 

Subclasses of WebMarkupContainer in wicket.markup.html.border
 class Border
          A border component has associated markup which is drawn and determines placement of any markup and/or components nested within the border component.
 class BoxBorder
          A very simple border component that draws a thin black line around its children.
 

Uses of WebMarkupContainer in wicket.markup.html.debug
 

Subclasses of WebMarkupContainer in wicket.markup.html.debug
 class PageView
          This is a simple Wicket component that displays all components of a Page in a table representation.
 

Uses of WebMarkupContainer in wicket.markup.html.form
 

Subclasses of WebMarkupContainer in wicket.markup.html.form
 class AbstractTextComponent
          Abstract base class for TextArea and TextField.
 class Button
          A form button.
 class Check
          Component representing a single checkbox choice in a wicket.markup.html.form.CheckGroup.
 class CheckBox
          HTML checkbox input component.
 class CheckBoxMultipleChoice
          A choice subclass that shows choices via checkboxes.
 class CheckGroup
          Component used to connect instances of Check components into a group.
 class CheckGroupSelector
          Selects and unselects all Check components under the same CheckGroup as itself.
 class DropDownChoice
          A choice implemented as a dropdown menu/list.
 class Form
          Base class for forms.
 class FormComponent
          An HTML form component knows how to validate itself.
 class FormComponentLabel
          A component that represents html label tag.
 class HiddenField
          TextField doesn't permit the html so this is a simple subclass to allow this A HiddenField is useful when you have a javascript based component that updates the form state.
 class ImageButton
          A button which renders itself as an image button resource.
 class ListChoice
          Essentially a drop down choice that doesn't drop down.
 class ListMultipleChoice
          A multiple choice list component.
 class PasswordTextField
          A password text field component.
 class Radio
          Component representing a single radio choice in a wicket.markup.html.form.RadioGroup.
 class RadioChoice
          A choice subclass that shows choices in radio style.
 class RadioGroup
          Component used to connect instances of Radio components into a group.
 class RequiredTextField
          A text field which automatically adds a RequiredValidator.
 class SimpleFormComponentLabel
          A form component label that replaces its body with the contents of FormComponent.getLabel()
 class SubmitLink
          A link which can be used exactly like a Button to submit a Form.
 class TextArea
          Multi-row text editing component.
 class TextField
          A simple text field.
 

Uses of WebMarkupContainer in wicket.markup.html.form.upload
 

Subclasses of WebMarkupContainer in wicket.markup.html.form.upload
 class FileUploadField
          Form component that corresponds to a <input type="file">.
 

Uses of WebMarkupContainer in wicket.markup.html.form.validation
 

Subclasses of WebMarkupContainer in wicket.markup.html.form.validation
 class FormComponentFeedbackBorder
          A border that can be placed around a form component to indicate when the bordered child/children has a validation error.
 class FormComponentFeedbackIndicator
          A panel that hides or shows itself depending on whether there are feedback messages for a given message filter.
 

Uses of WebMarkupContainer in wicket.markup.html.internal
 

Subclasses of WebMarkupContainer in wicket.markup.html.internal
 class HtmlBodyContainer
          This is basically a transparent WebMarkupContainer with the ability to get the markup stream positioned correctly where the component begins from the parent (page) container.
 class HtmlHeaderContainer
          The HtmlHeaderContainer is automatically created and added to the component hierarchy by a HtmlHeaderResolver instance.
 

Uses of WebMarkupContainer in wicket.markup.html.link
 

Subclasses of WebMarkupContainer in wicket.markup.html.link
 class BookmarkablePageLink
          Renders a stable link which can be cached in a web browser and used at a later time.
 class DownloadLink
          A link that streams a file to the client.
 class ExternalLink
          A simple anchor link (<a href="http://url">) pointing to any URL.
 class ImageMap
          An image map holds links with different hot-area shapes.
 class InlineFrame
          Implementation of an inline frame component.
 class InternalFrame
          Deprecated. will be replaced by InlineFrame in Wicket 2.0 as that's a better name for it.
 class Link
          Implementation of a hyperlink component.
 class PageLink
          Links to a given page via an object implementing the IPageLink delayed linking interface.
 class PopupCloseLink
          Closes a popup window and cleans up any related session page map for the popup.
 class ResourceLink
          A link to any ResourceReference.
 

Uses of WebMarkupContainer in wicket.markup.html.list
 

Subclasses of WebMarkupContainer in wicket.markup.html.list
 class ListItem
          Container that holds components in a ListView.
 class ListView
          A ListView holds ListItem children.
 class Loop
          A very simple loop component whose model is an Integer defining the number of iterations the loop should render.
static class Loop.LoopItem
          Item container for a Loop iteration.
 class PageableListView
          PageableListView is similar to ListView but provides in addition pageable views.
 class PropertyListView
          Simple ListVew subclass that wraps its item models in a BoundCompoundPropertyModel.
 

Uses of WebMarkupContainer in wicket.markup.html.navigation.paging
 

Subclasses of WebMarkupContainer in wicket.markup.html.navigation.paging
 class PagingNavigation
          A navigation for a PageableListView that holds links to other pages of the PageableListView.
 class PagingNavigationIncrementLink
          An incremental link to a page of a PageableListView.
 class PagingNavigationLink
          A link to a page of a PageableListView.
 class PagingNavigator
          A Wicket panel component to draw and maintain a complete page navigator, meant to be easily added to any PageableListView.
 

Uses of WebMarkupContainer in wicket.markup.html.panel
 

Subclasses of WebMarkupContainer in wicket.markup.html.panel
 class ComponentFeedbackPanel
          Convenience feedback panel that filters the feedback messages based on the component given in the constructor.
 class FeedbackPanel
          A panel that displays FeedbackMessages in a list view.
 class Fragment
          Usually you either have a markup file or a xml tag with wicket:id="myComponent" to associate markup with a component.
 class Panel
          A panel is a reusable component that holds markup and other components.
 

Uses of WebMarkupContainer in wicket.markup.html.resources
 

Subclasses of WebMarkupContainer in wicket.markup.html.resources
 class JavaScriptReference
          Link to a packaged JavaScript file.
 class PackagedResourceReference
          Base class for components that render references to packaged resources.
 class StyleSheetReference
          Link to a packaged style sheet.
 

Uses of WebMarkupContainer in wicket.markup.html.tree
 

Subclasses of WebMarkupContainer in wicket.markup.html.tree
 class AbstractTree
          Base component for trees.
 class Tree
          An tree that renders as a flat (not-nested) list, using spacers for indentation and nodes at the end of one row.
static class Tree.DefaultNodePanel
          The default node panel.
 

Uses of WebMarkupContainer in wicket.markup.resolver
 

Subclasses of WebMarkupContainer in wicket.markup.resolver
static class AutoLinkResolver.AutolinkBookmarkablePageLink
          Autolink components delegate component resolution to their parent components.
 

Uses of WebMarkupContainer in wicket.util.tester
 

Subclasses of WebMarkupContainer in wicket.util.tester
 class DummyHomePage.TestLink
           
 



Copyright © 2004-2007 Wicket developers. All Rights Reserved.