Class FWAttribute
Last edit by:
Weaver ~
12 Apr, 2009
Pages in this section:
- A Hello World tutorial
- Action Elements
- Class FWAction
- Class FWActionList
- Class FWAttribute
- Class FWColor
- Class FWLinkParameter
- Class FWListData
- Class FWOSAInterpreter
- Class FWOutput
- Class FWPage
- Class FWParameter
- Class FWParameterList
- Class FWTag
- Files and Freeway Actions
- General Properties and User Methods
- Organisation of Classes
- Specific Properties and User Methods
- Weaver
This class is a subclass of Class
FWOutput.
It represents an attribute of a Case
FWTag.
Consider the following snippit of HTML.:
<img src="Resources/_clear.gif" border=0 width=50 height=1 alt="">
In the tag tree this would be represented as one FWTag. The attributes of the tag:
src="Resources/_clear.gif"
border=0
width=50
height=1
alt=""
are each represented as an FWAttribute.
When you add an attribute to a tag (in JavaScript you do this by just
adding a property), such as:
myTag.onclick='"alert(1);”';
a new FWAttribute will be created.
Property (1)
fwValue
This is the text value of the attribute.
