I created a list of people from a feature layer in arcgis online.
I want it to show me attributes from the same layer according to the person selected from the list.
I tried this
pulldata("@layer","getValue","attributes.ci","https://services8.arcgis.com/2jmdYNQsteiDSgjD/arcgis/rest/services/Personal_Trnasporte_USB/FeatureSe...",${registro_name})
but it shows nothing
Thanks
Solved! Go to Solution.
Hello @RaynerCastro,
It looks like your where clause may be invalid, it should be something like concat("<namefield>='",${registro_name},"'"). Please check out the Query a Feature Layer sample in Connect and the documentation for more information.
Hello @RaynerCastro,
It looks like your where clause may be invalid, it should be something like concat("<namefield>='",${registro_name},"'"). Please check out the Query a Feature Layer sample in Connect and the documentation for more information.
it worked! thank you!