| |||||||
FRAMES NO FRAMES |
Use the webuijsf:mastFooter
tag to display a a footer,
at the bottom of each rendered HTML page of the web
application. The footer signifies the end of the display for that page.
The footer should correspond to a masthead that is usually displayed at the
top of each rendererd HTML page.
In the rendered HTML page, the mastFooter is created with <div>
elements. The footer consists of a corporate image which could be supplied by
using the corporateImageURL
attribute or a corporateImage
facet:
mastFooter code sample
Simple use case:
<webuijsf:footer id="myfoot"/>
Using the corporateImage attribute:
<webuijsf:mastFooter id="myFoot"
corporateImageURL="/path/to/image/foo.jpg" />
Using the corporateImage Facet:
<webuijsf:mastFooter id="myFoot">
<f:facet name="corporateImage">
<webuijsf:image src="/path/to/image/foo.jpg" height="hh" width="ww"/>
</f:facet>
</webuijsf:mastFooter>
Tag Information | |
Tag Class | com.sun.webui.jsf.component.MastFooterTag |
TagExtraInfo Class | None |
Body Content | JSP |
Display Name | None |
Attributes | ||||
Name | Required | Request-time | Type | Description |
binding | false | false | java.lang.String | A ValueExpression that resolves to the UIComponent that corresponds to this tag. This attribute allows the Java bean that contains the UIComponent to manipulate the UIComponent, its properties, and its children. |
corporateImageHeight | false | false | java.lang.String | The height to use for the Corporate Image, in pixels. Use this attribute when specifying the corporateImageURL, along with the corporateImageWidth attribute, to specify dimensions of PNG images for use in Internet Explorer. |
corporateImageWidth | false | false | java.lang.String | The width to use for the Corporate Image URL, in pixels. Use this attribute along with the corporateImageHeight attribute to specify dimensions of PNG images for use in Internet Explorer. |
styleClass | false | false | java.lang.String | CSS style class(es) to be applied to the outermost HTML element when this component is rendered. |
visible | false | false | java.lang.String | Use the visible attribute to indicate whether the component should be viewable by the user in the rendered HTML page. If set to false, the HTML code for the component is present in the page, but the component is hidden with style attributes. By default, visible is set to true, so HTML for the component HTML is included and visible to the user. If the component is not visible, it can still be processed on subsequent form submissions because the HTML is present. |
style | false | false | java.lang.String | CSS style(s) to be applied to the outermost HTML element when this component is rendered. |
corporateImageDescription | false | false | java.lang.String | The description for the Corporate Image, used as alt text for the image. |
rendered | false | false | java.lang.String | Use the rendered attribute to indicate whether the HTML code for the component should be included in the rendered HTML page. If set to false, the rendered HTML page does not include the HTML for the component. If the component is not rendered, it is also not processed on any subsequent form submission. |
corporateImageURL | false | false | java.lang.String | The url to the image file to use for the Corporate Image. Use this attribute to override the corporate image that is set in the theme. |
id | false | true | java.lang.String | No Description |
Variables | No Variables Defined. |
| |||||||
FRAMES NO FRAMES |