Hi Telerik,
I am having a problem using a multi-value parameter and i m using Standalone Report Designer. I am using a web service data source (2-step API) to show the table according to the ClientID as a parameter.
My requirement:
Use the multi-value parameter as a ClientID and show the separate table for each selected ClientID on one page or separate pages.
Suppose:
There are 1-6 ClientIDs, and each ClientID has different data.
For the ClientID 1
Name Address phone Email
abc asddad 2123 asdas@abc.com
sdf asdad 548 sada@abc.com
For the ClientID 2
Name Address phone Email
qwwe qwe 222 qww@qwwq.com
zxxc zxc 5768 vcv@zxc.com
So, if I select ClientID 1 in the filter, then it should show the table data according to ClientID 1, and when I select 2 ClientIDs, i.e., 1 and 2,
Then the report should show the two tables just like above. But what I faced was
I am getting all the data in one table like this:
Name Address phone Email
abc asddad 2123 asdas@abc.com
sdf asdad 548 sada@abc.com
qwwe qwe 222 qww@qwwq.com
zxxc zxc 5768 vcv@zxc.com
-- I have used grouping as Fields.ClientId and Multi-value for ClientID
-- Placed the table inside GroupHeaderSection
Also tried another setup, but I am still getting data in one table; I need a separate table for the selected ClietID in on one page/separate page.
And when I try to use JsonDataSource, my requirement works, but in Web Service Data Source it doesn't work. Why?
-- Is there any way to fulfill the requirement?