You see the Properties window for a Script component when you select the component in the Navigator window.
This JavaServer Faces 1.2 component has the following properties.
General
id.Type: String
The name of the Script component in the page bean and the JSP file.
Data
url.Type: String
An absolute or relative URL specifying the target of the script. This property is the equivalent of the src attribute of the HTML <script> tag.
Advanced
charset. Type: String
The character encoding of the script or of the JavaScript file referenced by the script component. Equivalent to the HTML attribute charset of the HTML <script> tag. You can see a list of encodings at
.
rendered. Type: boolean
If selected, the script is to be rendered and processed on any subsequent page submission. If not selected, the script does not appear in the page at all.
type. Type: String
The scripting language of the script's contents. This value overrides the default scripting language. The scripting language is
specified as a content type like text/javascript. Equivalent to the type attribute of the HTML <script> tag.