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"
			
			
									
									
						JSON key value pair
- 
				Lech Kulikowski
 - Posts: 7470
 - Joined: Tue Mar 20, 2018 5:34 am
 
Re: JSON key value pair
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.
			
			
									
									
						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.