Skip to main content
Inspiring
May 18, 2020
Answered

Is there a way to get the name of the own field itself ?

  • May 18, 2020
  • 1 reply
  • 1022 views

Is there a way to get the name of the own field itself where the code is written, in the code that writes in the field?

 

For example, if I have a field named "ABC".

    var x = this.getField ("ABC");
    event.value = x.name;

It will be "ABC",

 

Is there a way to avoid to writing own field name ?
    var x = this.getField ("ABC") ;

This topic has been closed for replies.
Correct answer BarlaeDC

Hi,

you should be able to "event.target.name", as it should return the name of the field.

Regards

Malcolm

 

1 reply

BarlaeDC
Community Expert
BarlaeDCCommunity ExpertCorrect answer
Community Expert
May 18, 2020

Hi,

you should be able to "event.target.name", as it should return the name of the field.

Regards

Malcolm

 

Inspiring
May 18, 2020

wow! thank you!