Skip to main content
Inspiring
January 10, 2020
Answered

Display error message on checkbox if drop down selected

  • January 10, 2020
  • 1 reply
  • 1010 views

I have a checkbox named 'NoLieu' and a dropdown list named 'AbsenceType'.  Is it possible to display an error message and/or disable the user from being able to check the box if the user selects from one of the options in the Absence Type dropdown list?  Even better, if an error message could also appear if the user checks the No Lieu box first and then selects an option from the Absence dropdown list too.  I don't want them to be able to check the 'No Lieu' box at all if they select an Absence Type option.

Thanks!

This topic has been closed for replies.
Correct answer ls_rbls

Hi,

 

In the custom calculation script of your dropdown field, you can use something like this:

 

var a = this.getField("No Lieu").value;
var b = this.getField("Absence Type").valueAsString;


if(a=="Off") event.value=b;
else if (a=="Yes") event.value="";
if ( (b!=="") && (a=="Yes") ) app.alert("PLEASE NOTE: Only one selection is allowed",0);

1 reply

ls_rbls
Community Expert
ls_rblsCommunity ExpertCorrect answer
Community Expert
January 13, 2020

Hi,

 

In the custom calculation script of your dropdown field, you can use something like this:

 

var a = this.getField("No Lieu").value;
var b = this.getField("Absence Type").valueAsString;


if(a=="Off") event.value=b;
else if (a=="Yes") event.value="";
if ( (b!=="") && (a=="Yes") ) app.alert("PLEASE NOTE: Only one selection is allowed",0);
Inspiring
January 13, 2020

Thank you so much!!  You are a gem!  It works like a charm 🙂

ls_rbls
Community Expert
Community Expert
January 13, 2020

You're welcome. Happy to help.