| |||||||
FRAMES NO FRAMES |
<%@ taglib prefix="nested" uri="http://struts.apache.org/tags-nested" %>
<anyxmlelement xmlns:nested="http://struts.apache.org/tags-nested" />
[Since Struts 1.1]
This tag library brings a nested context to the functionality of the Struts custom tag library.
It's written in a layer that extends the current Struts tags, building on their logic and functionality. The layer enables the tags to be aware of the tags which surround them so they can correctly provide the nesting property reference to the Struts system.
It's all about nesting beans...
A bean holds a reference to another bean internally, and all access to that bean is handled through the current bean. This act of having one bean's access go through another bean is known as "nesting beans". The first bean is known as the parent bean. The bean which it references, is known as a child bean. The terms "parent" and "child" are commonly used to describe the model's hierarchy.A simple example...
Take an object which represents a monkey. The monkey's job is to pick bunches of bananas. On each bunch picked hangs many bananas. If this case was translated to bean objects, the monkey object would have a reference to the bunch objects he picked, and each bunch object would hold a reference to the bananas hanging in the bunch.To describe this...
The monkey object is the parent to the bunch object, and the bunch object is a child of the monkey object. The bunch object is parent to its child banana objects, and the child banana objects children of the bunch object. The monkey is higher in the hierarchy than the bananas, and the bananas lower in the hierarchy to the bunches.One special term to remember is for the most parent class, which is known as the "root" object which starts the hierarchy.
Nested tags are all about efficiently managing this style of hierarchy structure within your JSP markup.
Important Note: Nearly all these tags extend tags from other libraries to bring their functionality into the nested context. Nesting relies on the tags working against the one bean model, and managing the properties so that they become relative to the properties they are nested within. In doing so, the tags will set the "name" attribute internally (where applicable), and in many cases will rely on the "property" attribute being set so it can be updated internally to become nested. The original tags on occasion provide options that don't use the "name" and "property" attributes. These uses will then fall outside the nested context, and will most likely cause error. To take advantage of these options, markup using the original tag for these cases. For an example see the
<nested:options>
tag.
Tag Library Information | |
Display Name | None |
Version | 1.3 |
Short Name | nested |
URI | http://struts.apache.org/tags-nested |
Tag Summary | |
nest | Defines a new level of nesting for child tags to reference to This tag provides a simple method of defining a logical nesting level in the nested hierarchy. It run no explicit logic, is simply a place holder. It also means you can remove the need for explicit setting of level properties in child tags. Just as the iterate tag provide a parent to other tags, this does the same but there is no logic for iterating or otherwise. Example... <nested:write property="myNestedLevel.propertyOne" /> <nested:write property="myNestedLevel.propertyTwo" /> <nested:write property="myNestedLevel.propertyThree" /> Can instead become... <nested:nest property="myNestedLevel" > <nested:write property="propertyOne" /> <nested:write property="propertyTwo" /> <nested:write property="propertyThree" /> </nested:nest > |
writeNesting | Writes or makes a scripting variable of the current nesting level. This tag provides a way of accessing the nested property reference used by the nested tags. Can expose a scripting variable, or simply write out the value. |
root | To start off a nested hierarchy without the need for a form This tag is provided to allow the nested tags to find a common bean reference without the need for a form and its relative overhead. As long as the The tag can also be used without specifying the Note: The access to a bean via the |
define | Nested Extension - Define a scripting variable based on the value(s) of the specified bean property. This tag is an extension of the |
message | Nested Extension - Render an internationalized message string to the response. This tag is an extension of the |
size | Nested Extension - Define a bean containing the number of elements in a Collection or Map. This tag is an extension of the |
write | Nested Extension - Render the value of the specified bean property to the current JspWriter. This tag is an extension of the |
checkbox | Nested Extension - Render A Checkbox Input Field This tag is an extension of the |
errors | Nested Extension - Conditionally display a set of accumulated error messages. This tag is an extension of the |
file | Nested Extension - Render A File Select Input Field This tag is an extension of the |
form | Nested Extension - Define An Input Form This tag is an extension of the |
hidden | Nested Extension - Render A Hidden Field This tag is an extension of the |
image | Nested Extension - Render an input tag of type "image" This tag is an extension of the |
img | Nested Extension - Render an HTML "img" tag This tag is an extension of the |
link | Nested Extension - Render an HTML anchor or hyperlink This tag is an extension of the |
messages | Nested Extension - Conditionally display a set of accumulated messages. This tag is an extension of the |
multibox | Nested Extension - Render A Checkbox Input Field This tag is an extension of the |
options | Nested Extension - Render a Collection of Select Options This tag is an extension of the Note: The nested context of this tag relies on the use of the "property" property, and the internal use of the "name" property. The nested tags rely on these properties and will attempt to set them itself. The For example, the "collections" option allows you to specify a separate bean reference which itself is a list of objects with properties to access the title and value parts of the html option tag. You can use this in a nested context (the list is a property of a nested bean) by using the nested define tag and the original options tag. <nested:nest property="myNestedLevel" /> <nested:define property="collectionList" /> <html:options collection="collectionList" property="valueProperty" labelProperty="labelProperty" /> </nested:nest > |
optionsCollection | Nested Extension - Render a Collection of Select Options This tag is an extension of the |
password | Nested Extension - Render A Password Input Field This tag is an extension of the |
radio | Nested Extension - Render A Radio Button Input Field This tag is an extension of the |
select | Nested Extension - Render A Select Element This tag is an extension of the |
submit | Nested Extension - Render A Submit Button This tag is an extension of the |
text | Nested Extension - Render An Input Field of Type text This tag is an extension of the |
textarea | Nested Extension - Render A Textarea This tag is an extension of the |
empty | Nested Extension - Evaluate the nested body content of this tag if the requested variable is either null or an empty string. This tag is an extension of the |
equal | Nested Extension - Evaluate the nested body content of this tag if the requested variable is equal to the specified value. This tag is an extension of the |
greaterEqual | Nested Extension - Evaluate the nested body content of this tag if the requested variable is greater than or equal to the specified value. This tag is an extension of the |
greaterThan | Nested Extension - Evaluate the nested body content of this tag if the requested variable is greater than the specified value. This tag is an extension of the |
iterate | Nested Extension - Repeat the nested body content of this tag over a specified collection. This tag is an extension of the |
lessEqual | Nested Extension - Evaluate the nested body content of this tag if the requested variable is greater than or equal to the specified value. This tag is an extension of the |
lessThan | Nested Extension - Evaluate the nested body content of this tag if the requested variable is less than the specified value. This tag is an extension of the |
match | Nested Extension - Evaluate the nested body content of this tag if the specified value is an appropriate substring of the requested variable. This tag is an extension of the |
messagesNotPresent | Nested Extension - Generate the nested body content of this tag if the specified message is not present in this request. This tag is an extension of the |
messagesPresent | Nested Extension - Generate the nested body content of this tag if the specified message is present in this request. This tag is an extension of the |
notEmpty | Nested Extension - Evaluate the nested body content of this tag if the requested variable is neither null nor an empty string. This tag is an extension of the |
notEqual | Nested Extension - Evaluate the nested body content of this tag if the requested variable is not equal to the specified value. This tag is an extension of the |
notMatch | Nested Extension - Evaluate the nested body content of this tag if the specified value is not an appropriate substring of the requested variable. This tag is an extension of the |
notPresent | Nested Extension - Generate the nested body content of this tag if the specified value is not present in this request. This tag is an extension of the |
present | Nested Extension - Generate the nested body content of this tag if the specified value is present in this request. This tag is an extension of the |
| |||||||
FRAMES NO FRAMES |