Hi,
My report won't display if my JSON contains a field that the data source in Stimulsoft doesn't define.
For example:
JSON:
Stuff: {
       Field1: 1,
       Field2: 2
}
Stimulsoft DataSource:
Stuff defines Field1 but not Field2
Is there a way to tell stimulsoft to ignore fields that are not defined?
			
			
									
									
						Report won't display if Json structure doesn't match data source
- 
				Lech Kulikowski
 - Posts: 7469
 - Joined: Tue Mar 20, 2018 5:34 am
 
Re: Report won't display if Json structure doesn't match data source
Hello,
Please send your JSON file for analysis or check the following JSON string:
Thank you.
			
			
									
									
						Please send your JSON file for analysis or check the following JSON string:
Code: Select all
{
	"Stuff": [{
		"Field1": 1,
		"Field2": 2
	}]
}