Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagejs
var customer = $Xml.AppendChild('Customers/Customer');
customer.SetValue('Id','1');
````
@example
Append node with callback

...

`

Example

Append node with callback

Code Block
languagejs
$Xml.AppendChild('Customers/Customer', function(newNode)

...

 \{
  newNode.SetValue('Id','1');
\});

...