Hello - I am trying to invoke a URL using both data_filter and data_s (filter and select) parameters. Each will work alone, but I cannot get both to work in the same URL string:
"https://experience.arcgis.com/experience/<appid>/#data_s=where:dataSource_1-0:Code%3D391267&data_filter=dataSource_1-0:OrgID%3D8000"
I cannot use filtered views because the parameters will by dynamic and the URL will be passed from an external application. Is it possible to combine both filter and select?
Try replacing your hashtag # with a question mark ?
https://experience.arcgis.com/experience/<appid>/?data_s=where:dataSource_1-0:Code%3D391267&data_filter=dataSource_1-0:OrgID%3D8000
Thanks for the suggestion. Unfortunately, same result. The documentation specifies that data_s must be followed by a hashtag:
To select data records, use the data_s parameter, which follows a hashmark (#)
https://experience.arcgis.com/experience/<appid>/?data_filter=dataSource_1-0:OrgID%3D8000#data_s=where:dataSource_1-0:Code%3D391267
What happens if you switch the order?
Thank you - that worked! Which makes sense - filter first, select from filtered. I had tried re-ordering before but was using a "&" for the data_s parameter as I would for most multi-parameter URL strings, but the "#" is required.