Managed Metadata column required
Posted: 10 Jun 2020
I am having trouble setting a managed metadata column (name: key industry) required on submit --- I am using the below (which has worked before in other field types). Just need a basic on submit check --- cannot set it on the list as required due to other technical reasons. Any help would be appreciated. Thanks!
fd.onsubmit(function () {
if fd.field('KeyIndustry').value() == '') {
alert('Please, fill in key industry');
return false;
}
}
fd.onsubmit(function () {
if fd.field('KeyIndustry').value() == '') {
alert('Please, fill in key industry');
return false;
}
}