Below is my source code,
@Srubhi The correct syntax in Dashboard Studio drilldown event handlers is row.REGION.value. You must reference the .value property of the field in the row object. This ensures that when a user clicks on a marker, the actual value of the REGION field is assigned to the token.
So, in your JSON, the event handler should be modified as below:
......................
"eventHandlers": [
...........
"tokens": [
{
"token": "REGION",
"key": "row.REGION.value"
} ]
]
>>
If this post addressed your question, you can:
Acknowledging helpful answers keeps the community strong and motivates contributors to continue sharing their expertise.
>>
Hi @kknairr / i do have a value for REGION but it is returning as null when i click on the map marker could you please suggest here
Hi @Srubhi
I think the syntax for the key is row.<fieldname>.value
therefore you need row.REGION.value not row.REGION
🌟 Did this answer help you? If so, please consider:
Your feedback encourages the volunteers in this community to continue contributing.