6
Using Acrobat JavaScript in Forms
Forms Essentials
The XFA DOM model contains a root object that consists of either a
treeList
or a
Tree
.
A
treeList
consists of a list of nodes (which is why it is sometimes called a
NodeList
).
A
Tree
consists of a hierarchical structure of nodes, each of which may contain content, a
model, or a
textNode
.
The following properties and methods are available in a
treeList
object:
Properties:
length
Methods:
append
,
insert
,
item
,
namedItem
, and
remove
.
The following properties and methods are available in a
Tree
object:
Properties:
all
,
classAll
,
classIndex
,
index
,
name
,
nodes
,
parent
,
somExpression
Methods:
resolveNode
,
resolveNodes
Each
Node
element represents an element and its children in the XML DOM. To obtain a
string representation of the node, invoke its
saveXML
method. To apply an XSL transform
(XSLT) to the node and its children, invoke its
applyXSL
method. The following properties
and methods are available in a
Node
object:
Properties:
id
,
isContainer
,
isNull
,
model
,
ns
,
oneOfChild
Methods:
applyXSL
,
assignNode
,
clone
,
getAttribute
,
getElement
,
isPropertySpecified
,
loadXML
,
saveXML
,
setAttribute
,
setElement
There are two approaches to accessing content in an XML stream. In the first approach, XFA
syntax may be used to manipulate the XML DOM. In the second approach, you may use
standard XPath syntax.
The Acrobat JavaScript
XML
object provides two methods useful for manipulating XML
documents:
applyXPath
and
parse
.
The
applyXPath
permits the manipulation of an XML document via an XPath, and the
parse
method creates an object representing an XML document tree. Both of these return
an
XFA
object.
The first approach involves the usage of the
XFL
object’s
parse
method for accessing and
manipulating XML streams. The second approach involves the usage of the
XFL
object’s
applyXPath
method.
Both approaches are illustrated below.
112
Acrobat JavaScript Scripting Guide
Pages: Index 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280