<
From version < 3.2 >
edited by Outhman Moustaghfir
on 2023/03/02 17:23
To version < 6.1 >
edited by Outhman Moustaghfir
on 2024/06/10 11:26
>
Change comment: There is no comment for this version

Summary

Details

Page properties
Parent
... ... @@ -1,1 +1,1 @@
1 -iXPath V3.Funcitons.WebHome
1 +iXPath V3.Functions.XSLT .tracking.WebHome
Content
... ... @@ -7,9 +7,9 @@
7 7  GetTracking uses 4 params to help retrieve trackings in question.
8 8  
9 9  1. xpathExpression: read the IXpathExpression for more details ([[IXpathExpression>>https://ixpath.app/xwiki/bin/view/iXPath%20V3/IXpathExpression/]])
10 +1. fetchLinks : for optimization, you can choose the links you would like to fetch by sending the links needed separated by ';' , if your xpathExpression contains already the link, it can bypass this param. If you want to fetch all links - which is not recommended - you can put the value '$ALL'.
10 10  1. limit: it defines the max number of tracking to retrieve. **it's optional. **(Optional)
11 11  1. order: whether you want to order the list of trackings in a descending way or not by a certain key order. The default value is 'trkID' and it's optional as long as you fill in the limit value. (Optional)
12 -1. projection: you can return only some wanted fields instead of fetching the integrity of tracking object. (Optional)
13 13  
14 14  = Uses =
15 15  
... ... @@ -17,30 +17,35 @@
17 17  
18 18  if we want to get Product by key values
19 19  
20 - {{code language="XML"}}<xsl:value-of select="ixf:GetTracking('Product', 'Name;Brand;_statusTracking' , 'Laptop;Dell;Delivered')"></xsl:value-of>{{/code}}
20 + {{code language="XML"}}<xsl:value-of select="ixf:GetTracking('Product [Name == Laptop AND Brand == Dell AND _statusTracking==Delivered ]')"></xsl:value-of>{{/code}}
21 21  
22 22  Searching by trkIDs :
23 23  
24 24  {{code language="XML"}}
25 -<xsl:value-of select="ixf:GetTracking('Product', 'trkID' , '632061bef8aef457701a28d2 632061e5f8aef457701a28d3 63206213f8aef457701a28d4')"></xsl:value-of>
25 +<xsl:value-of select="ixf:GetTracking('Product [ _trkID in '632061bef8aef457701a28d2;632061e5f8aef457701a28d3;63206213f8aef457701a28d4]')"></xsl:value-of>
26 26  {{/code}}
27 27  
28 -Set the limit value to get only 4 elements  :
28 +Set the limit value to get only 4 elements and fetch link 'Invoice' :
29 29  
30 30  {{code language="XML"}}
31 -<xsl:value-of select="ixf:GetTracking('Product', 'Name;Brand;_statusTracking' , 'Laptop;Dell;Delivered' , 4)"></xsl:value-of>
31 +<xsl:value-of select="ixf:GetTracking('Product [Name == Laptop AND Brand == Dell AND _statusTracking==Delivered ]','Invoice',4)"></xsl:value-of>
32 32  {{/code}}
33 33  
34 34  Add an order by Country :
35 35  
36 36  {{code language="XML"}}
37 -<xsl:value-of select="ixf:GetTracking('Product', 'Name;Brand;_statusTracking' , 'Laptop;Dell;Delivered' , 4, 'Country')"></xsl:value-of>
37 +<xsl:value-of select="ixf:GetTracking('Product [Name == Laptop AND Brand == Dell AND _statusTracking==Delivered ]','Invoice',4,'Country')"></xsl:value-of>
38 38  {{/code}}
39 39  
40 -if you want to add an order without filling the limit, you must put 0 as a value to it :
40 +if you want to add an order without filling the limit and the fetchLink params, you must put 0 as a value to it :
41 41  
42 42  {{code language="XML"}}
43 -<xsl:value-of select="ixf:GetTracking('Product', 'Name;Brand;_statusTracking' , 'Laptop;Dell;Delivered' , 0, 'Country')"></xsl:value-of>
43 +<xsl:value-of select="ixf:GetTracking('Product [Name == Laptop AND Brand == Dell AND _statusTracking==Delivered ]','',0,'Country')"></xsl:value-of>
44 44  {{/code}}
45 45  
46 +GetTracking with projection : 
46 46  
48 +
49 +{{code language="XML"}}
50 +<xsl:value-of select="ixf:GetTracking('Product [Name == Laptop AND Brand == Dell AND _statusTracking==Delivered ]/Processors')"></xsl:value-of>
51 +{{/code}}
This wiki is hosted and managed by iXPath
Powered by XWiki 13.3 debian