Skip to main content
Inspiring
January 10, 2020
解決済み

Display error message on checkbox if drop down selected

  • January 10, 2020
  • 返信数 1.
  • 1010 ビュー

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!

このトピックへの返信は締め切られました。
解決に役立った回答 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

ls_rbls
Community Expert
ls_rblsCommunity Expert解決!
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.