Expand my Community achievements bar.

Get object's full reference syntax expression

Avatar

Level 4

Hi folks,

does anyone know how can I get the full name of an object.

For example:

For myRow object I want to get the full reference, like: xfa.form.form1.myForm[0].myTable.myRow

There is some property or functions to get this reference from the object, something like: myRow.getFullreferenceSyntaxExpression ?

Thank you,

Yair

1 Reply

Avatar

Former Community Member

I usually use the enter event of the field and put this code on it:

app.alert(this.somExpression)

A messageBox will appear with the full som Expression for the field when you enter it.

Paul