You need to sign in to do that
Don't have an account?

Flex grid and merge fields
Is there any way to get access to a merge field within the flex code?
I have a grid on one of my custom object detail pages and I need to know in my flex code what the id of the custom object's page is, so I can show the proper information in the grid...
Any ideas? thoughts?
Thanks in advance...
I have a grid on one of my custom object detail pages and I need to know in my flex code what the id of the custom object's page is, so I can show the proper information in the grid...
Any ideas? thoughts?
Thanks in advance...
then you can read the value of these from inside Flex / ActionScript.
look for Application.paramater inside the toolkit to see how these values are passed from the scontrol to flex
application.parameters.(name of variable) works great...
THANKS