Page 1 of 1

JSON key value pair

Posted: Thu Aug 08, 2019 8:06 pm
by ADev2000
I have a JSON file something line this :
[
{ "mykey" : "eName" , "myVal" : "Jonh Doe"},
{ "mykey" : "Age" , "myVal" : "50"
}
]
I need to display this information in the report in their own text boxes. Is there a way to in the text box expression to add a filter?

Foe example in in "Name" text box, I want to say " textbox.text = myVal where mykey=eName"

Re: JSON key value pair

Posted: Tue Aug 13, 2019 6:46 am
by Lech Kulikowski
Hello,

Directly in the Text component, it is not possible. You should place DataBand with necessary Filter(mykey=eName) and place Text component on it.

Thank you.