SVFormOnFormPreTransform
Designer Javascript References
The SVFormOnFormPreTransform function is a function that is called before using the Extensible Style Sheet Language Transformation (XSLT) to generate the resulting markup from the XML and Extensible Style Sheet Language (XSL).
Download example (.wssln file)
SVFormOnFormPreTransform arguments
Argument | Description |
renderCount | The internal count of the number of times a form is rendered. The count is set to 0 after the getting the form markup from the server. Every other time the form is rendered, the renderCount variable is incremented. |
xmlDocument | The XML Document that contains all the XML of the form. |
SVFormOnFormPreTransform code sample
The following Code Snippet populates a field within a form with the amount of times the form is rendered:
//SVFormOnFormPreTransform Example
//Create function with the renderCount and xmlDocument arguments
function SVFormOnFormPreTransform(renderCount, xmlDocument) {
//Create a variable to place the value of renderCount in
var theRenderCount = xmlDocument.selectSingleNode("/my:myFields/my:field1");
//Set the value of field1 to the value of renderCount
theRenderCount.setValue(renderCount);
}