Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

Radio button Javascript

New Here ,
Jun 18, 2023 Jun 18, 2023

Hi all
I'm wanting to put in some formulas to make the completion of the below form easier for my trainers and i've not used javascript before, so i'm not really sure where to start. 

I would like to make it so that if they tick satisfactory in Practical assessment 1, the date from the top is put into the date field. Is this even possible?

Carlee30578294tfof_0-1687126282556.png

 

TOPICS
How to , JavaScript , PDF
466
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
1 ACCEPTED SOLUTION
Community Expert ,
Jun 18, 2023 Jun 18, 2023

Let's say the export value of 'Practical assessment 1' for 'satisfactory' is 'Choice1', as 'Custom calculation script' of 'date' field use this:

var PA1 = this.getField("Practical assessment 1").valueAsString;
var datefield = this.getField("Date").valueAsString;
event.value = PA1 === "Choice1" ? datefield : "";

View solution in original post

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Jun 18, 2023 Jun 18, 2023

Let's say the export value of 'Practical assessment 1' for 'satisfactory' is 'Choice1', as 'Custom calculation script' of 'date' field use this:

var PA1 = this.getField("Practical assessment 1").valueAsString;
var datefield = this.getField("Date").valueAsString;
event.value = PA1 === "Choice1" ? datefield : "";
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Jun 18, 2023 Jun 18, 2023
LATEST

That is fantastic - thank you Nesa! 

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines