ActionLink
| Component that triggers an action on the server with a subsequent full page refresh. |
code | html |
AddRowLink
| Used inside an org.apache.tapestry5.corelib.components.AjaxFormLoop component to spur the addition of a new
row. |
code | html |
AjaxFormLoop
| A special form of the org.apache.tapestry5.corelib.components.Loop component that adds Ajax support to
handle adding new rows and removing existing rows dynamically. |
code | html |
AjaxFormLoop.SyncValue
| Action for synchronizing the current element of the loop by recording its client value / primary key. |
code | html |
Any
| Renders an arbitrary element including informal parameters. |
code | html |
BeanDisplay
| Used to display the properties of a bean, using an underlying BeanModel . |
code | html |
BeanEditForm
| A component that creates an entire form editing the properties of a particular bean. |
code | html |
BeanEditor
| A component that generates a user interface for editing the properties of a bean. |
code | html |
BeanEditor.CleanupEnvironment
| |
code | html |
BeanEditor.Prepare
| |
code | html |
Checkbox
| A Checkbox component is simply a <input type="checkbox">. |
code | html |
DateField
| A component used to collect a provided date from the user using a client-side JavaScript calendar. |
code | html |
Delegate
| A component that does not do any rendering of its own, but will delegate to some other object that can do rendering. |
code | html |
Errors
| Standard validation error presenter. |
code | html |
EventLink
| A close relative of org.apache.tapestry5.corelib.components.ActionLink except in two ways. |
code | html |
ExceptionDisplay
| Integral part of the default org.apache.tapestry5.corelib.pages.ExceptionReport page used to break apart and
display the properties of the exception. |
code | html |
Form
| An HTML form, which will enclose other components to render out the various types of fields. |
code | html |
FormFragment
| A FormFragment is a portion of a Form that may be selectively displayed. |
code | html |
FormInjector
| A way to add new content to an existing Form. |
code | html |
Grid
| A grid presents tabular data. |
code | html |
Grid.CachingDataSource
| A version of GridDataSource that caches the availableRows property. This addresses TAPESTRY-2245. |
code | html |
Grid.DefaultGridSortModel
| Default implementation that only allows a single column to be the sort column, and stores the sort information as
persistent fields of the Grid component. |
code | html |
GridCell
| Part of Grid that renders the markup inside a single data cell. |
code | html |
GridColumns
| Renders out the column headers for the grid, including links (where appropriate) to control column sorting. |
code | html |
GridPager
| Generates a series of links used to jump to a particular page index within the overall data set. |
code | html |
GridRows
| Renders out a series of rows within the table. |
code | html |
GridRows.PrepareForKeys
| This action is also associated with the org.apache.tapestry5.PrimaryKeyEncoder ; it allows the PKE to be
informed of the series of keys to expect with the form submission. |
code | html |
GridRows.SetupForRowByIndex
| This action is used when a org.apache.tapestry5.PrimaryKeyEncoder is not. |
code | html |
GridRows.SetupForRowByKey
| This action is used when a org.apache.tapestry5.PrimaryKeyEncoder is provided. |
code | html |
If
| Conditionally renders its body. |
code | html |
Label
| Generates a <label> element for a particular field. |
code | html |
LinkSubmit
| Generates a client-side hyperlink that submits the enclosing form. |
code | html |
LinkSubmit.ProcessSubmission
| |
code | html |
Loop
| Basic looping class; loops over a number of items (provided by its source parameter), rendering its body for each
one. |
code | html |
Loop.PrepareForKeys
| Stores a list of keys to be passed to PrimaryKeyEncoder#prepareForKeys(List) . |
code | html |
Loop.RestoreState
| Restores a state value (this is the case when there is no encoder and the complete value is stored). |
code | html |
Loop.RestoreStateViaEncodedPrimaryKey
| Restores the value using a stored primary key via PrimaryKeyEncoder#toValue(Serializable) . |
code | html |
Output
| A component for formatting output. |
code | html |
OutputRaw
| Used to output raw markup to the client. |
code | html |
PageLink
| Generates a render request link to some other page in the application. |
code | html |
Palette
| Multiple selection component. |
code | html |
Palette.AvailableRenderer
| |
code | html |
Palette.OptionGroupEnd
| |
code | html |
Palette.OptionGroupStart
| |
code | html |
Palette.RenderOption
| |
code | html |
Palette.SelectedRenderer
| |
code | html |
PasswordField
| A version of TextField , but rendered out as an <input type="password"> element. |
code | html |
PropertyDisplay
| Outputs a single property value. |
code | html |
PropertyEditor
| Used to edit a single property of a bean. |
code | html |
PropertyEditor.CleanupEnvironment
| |
code | html |
PropertyEditor.SetupEnvironment
| Configures and stores a PropertyEditContext into the Environment . |
code | html |
Radio
| A radio button (i.e., <input type="radio">). |
code | html |
RadioGroup
| |
code | html |
RadioGroup.Setup
| |
code | html |
RemoveRowLink
| Used inside a org.apache.tapestry5.corelib.components.AjaxFormLoop to remove the current row from the loop. |
code | html |
RenderObject
| Renders out an object using the ObjectRenderer service. |
code | html |
Select
| Select an item from a list of values, using an [X]HTML <select> element on the client side. |
code | html |
Select.Renderer
| |
code | html |
Submit
| Corresponds to <input type="submit">, a client-side element that can force the enclosing form to submit. |
code | html |
Submit.ProcessSubmission
| |
code | html |
SubmitNotifier
| A non visual component used to provide notifications to its container during a form submission. |
code | html |
SubmitNotifier.TriggerEvent
| |
code | html |
TextArea
| TextArea component corresponds to a <textarea> element. |
code | html |
TextField
| TextField component corresponds to <input type="text"> element. |
code | html |
TextOutput
| Outputs paragraph oriented text, typically collected via a org.apache.tapestry5.corelib.components.TextArea
component. |
code | html |
Unless
| A close relative of the org.apache.tapestry5.corelib.components.If component that inverts the meaning of its
test. |
code | html |
Zone
| A Zone is portion of the output page designed for easy dynamic updating via Ajax or other client-side effects. |
code | html |