I have two custom fields.One select field .I need one description field to be filled if answe is No
<script type="text/javascript">
FeatureToggle = document.getElementById('12000');
if (FeatureToggle) {
target = document.getElementById('12100');
if (FeatureToggle =='Yes') target.style.display='none';
FeatureToggle.onchange=function() {
if (this.value =='No') {
target.style.display = '';
target.value="Why feature toggle is No";
} else {
target.style.display='none';
}
}
}
</script>
is this script correct.Its not working after adding it.Also i added in here custom fields---)right click ---)configure ---)description.
please advise.Als advise if there is anyother script for the requirement
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi,
Thanks for looking.
I have a select list with yes or No that is FeatureToggle .My requirement is if user selects no he should give expalanation.So i created another field which is a text field.I need this mandatory/fill if he selects no.
Kindly help
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Have you tried Adrien's suggestions yet? Repeating the question is of no help, you need to think through the responses you get and respond to them with more information.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
And your question is ... ?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.