I'm trying to figure out how to pass a list of integers client side from a .NET application to a multi value parameter on a HTML5 report.
For a single parameter it works fine.
parameters: { CompanyIds: 3}
But if I try to pass multiple values it fails with a JavaScript syntax error.
parameters: { CompanyIds: {3229, 3332, 3223, 3334} }
What is the correct way to pass a list of integers to a multi value parameter client side for a HTML5 report?