- Mark as New
- Follow
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report
Hello,
I am trying to get the value of a field from a menu item. I am using this script from the Folder Level so on load I can add the menu item.
However, I am unable to get the value of my field.
Here is my code:
function GetFieldValue()
{
var firstName = First_Name.rawValue;
app.alert(firstName);
}
app.addMenuItem({cName:"-", cParent:"Help", cExec:" "});
app.addMenuItem({cName:"Get Field Value", cParent:"Help", cExec:"GetFieldValue();"});
This is the error I get:
But when I try the same script from a button click, it works perfectly!
form1.#subform[0].btnGetFields::click - (JavaScript, client)
var firstName = First_Name.rawValue;
app.alert(firstName);
This is how my form looks like in the Hierarchy.
Any help would be appreciated!
Thank you!