The really great script editor on the desktop version makes it easy to get and use a field_id by clicking in a list. Is there an easy way on mobile to get a particular field_id? Or, do you manually need to do that in code, using perhaps, getFieldIds()? Thank you.
-
This topic was modified 1 year, 7 months ago by alang.
In the script editor, clicking on the symbol to the right of fx
(highlighted in the attached image) opens the Select a Field prompter. There I select field_id
followed by the field of interest. This creates the typical field definition in the code:
var field_name_id = 'fld-xxx';
Attachments:
You must be
logged in to view attached files.
Ah! Perfect. Thank you Daniel.