Expand my Community achievements bar.

Announcing the launch of new sub-community for Campaign Web UI to cater specifically to the needs of Campaign Web UI users!

Dynamic field + bootstrap validation

Avatar

Community Advisor

I am displaying/hiding form elements based on a user dropdown select option, the following script is meant to add/remove required attributes on the fields, however, it seems that validation is not taking this into account, could it be that validation script only runs on page load rather than on dynamic form changes? if so, how can I make it listen to changes in form required fields.

 

3Lz9B

 

function MyOnChange(invesType){
  var x = document.getElementById("iProfessional");
  if (invesType != "privateClients") {
    x.style.display = "block";
    $("#companyname").attr("data-nl-ismandatory","true");    
  $('#companyname').prop('required', true)
  
    $("#jobtitle").attr("data-nl-ismandatory","true");    
  $('#jobtitle').prop('required', true)
  
    
    } else {
    x.style.display = "none";
     $("#companyname").attr("data-nl-ismandatory","false");
    $("#companyname").removeAttr("required");
  
    $("#jobtitle").attr("data-nl-ismandatory","false");
    $("#jobtitle").removeAttr("required");  
    }    
  
}

 Upon submitting the form after the required and data-nl-ismandatory have been removed, Adobe Campaign is showing that these fields are mandatory.

david_garcia1_0-1614778471668.png

 

1 Reply

Avatar

Community Advisor

Hello @david--garcia 

 

Remove all "data-nl-mandatory" tags and validate everything with the javascript. nl tags won't consider the dynamic changes.

Remove the validation log from OnChange function and add the logic in the form Validation function. The form validation function will look like this

 function formValidation(){
	var jobTitle=$("#jobtitle").val();
	var companyname=$("#companyname").val();
	if(jobTitle!="privateClients"){
		if(companyname==''){		
			alert("Company Name is required"); // you may want show it in error div via innerHTML
			return false;
		}
	}
	document.controller.submit("NEXT_TRANSITION_NAME");	
 }

 

and the submit button will have this onclick attribute.

onclick="return formValidation()"

 

It should work in this case.

 

 

 

 


     Manoj
     Find me on LinkedIn