10. Tomahawk Tag Reference
Contents > Tomahawk Tag Reference > t:buffer
t:buffer |
|
The t:buffer tag allows you to render parts of the page into a buffer to be displayed later. This can be useful for rendering if one component cannot be rendered before another component it is dependent on.
Example:
<t:buffer></t:buffer>
|
Tag Attributes
| binding |
String |
| |
| The value-binding expression linking this component tag to a backing bean property. |
| id |
String |
| |
| The unique identifier value for this component. The value must be unique within the closest naming container. |
| into |
String |
| Required |
| The into attribute creates a jsp object that the buffered content will be stored. |
| rendered |
String |
| |
| A value-binding expression that evaluates to a Boolean condition indicating if this component should be rendered. |
|