Changes for page 3. Variables
Last modified by Outhman Moustaghfir on 2024/01/23 13:58
<
>
edited by Outhman Moustaghfir
on 2021/04/27 17:20
on 2021/04/27 17:20
edited by Outhman Moustaghfir
on 2021/04/27 18:34
on 2021/04/27 18:34
Change comment:
There is no comment for this version
Summary
-
Page properties (1 modified, 0 added, 0 removed)
Details
- Page properties
-
- Content
-
... ... @@ -53,12 +53,31 @@ 53 53 54 54 ${XmlToXml1.get(1).type()} 55 55 ))) 56 - 57 - 58 58 ))) 59 59 60 60 59 +== Local variables == 61 61 61 +Local variable is a type of variable that can be newly created and used for a certain need. 62 62 63 +So as to create a local variable "newVar" with a value equals to "var number 1", we should write this piece of XSL code : 63 63 65 +{{code language="XML"}} 66 +<xsl:value-of select=" ixf:SetVar('newVar', 'var Number 1')"></xsl:value-of> 67 + 68 +{{/code}} 69 + 70 +The call of this new variable in the scnario is similar to previous system variables: **${newVar}.** 71 + 72 +To get 'newVar' from XSL file : 73 + 74 +{{code language="XML"}} 75 +<xsl:value-of select="ixf:getVar('Var')"></xsl:value-of> 76 +{{/code}} 77 + 78 + 79 + 80 + 81 + 82 + 64 64