Solved
Forum Discussion
Marsha_R
Champion Level 3
7 years agoif myObj and myAction are both strings, then something like this should work:
eval(myObj + '.' + myAction)
And if myObj is an object, like in your example, then something like this should work:
eval(myObj.FullName + '.' + myAction)
if myObj and myAction are both strings, then something like this should work:
eval(myObj + '.' + myAction)