How to append value in url under a!startProcessLink function

Certified Associate Developer

Hello,

I'm trying to build an application where the code shows multiple urls and on the basis of user click I want to fetch some value from the url. The url is stored in an array variable. Now I want to store the required value in another array variable and as per the user click on any specific url, I want the respected value to get print.

 

for eg: I have an array variable say "uri" containing below value

 

https://.../.../v1=12,

https://.../.../v2=13,

https://.../..../v3=14

 

Now in other array variable lets say "val" i'm storing the below values from url

12,13,14

 

All I want it to show exact value from variable "val" when user clicks on any of the url. Let say user clicks on url 2 then I want to show the value 13 as 13 is stored in that url. I'm using a!startProcessLink() function. Any suggestion will be appreciated.

  Discussion posts and replies are publicly visible

Parents Reply
  • 0
    Certified Associate Developer
    in reply to shwetap
    Hello Shweta,

    The example which I gave in the question is just for making the things clear. I mean the values which are appended in the url's are dynamic and not the static one. So it may be 12,13,14 or anything and also the values are storing in one array variable and url's are stored in another array variable. So there are two variables only one for url and one for values(Which is dynamic), Now the problem here is to get the value from the url with respect to the users click
Children