Hello,
I cannot seem to get this to work properly, I have patched together several other posts to get to where I am today, I feel like i must be missing something simple. I'm using SP 2013.
I want to use a look up list drop down to select a title project -- Let's call it 'Apples'
I would then like it to populate a multi select field called Project with the value 'Apples' and then allow users to also select other options if they need to....
Here is what I have and its not working:
NWF.FormFiller.Events.RegisterAfterReady(function () {
NWF$('#'+varProjTitle).change(function(){
if (NWF$('#'+varProjTitle).val ("Apples")){
NWF$('#'+varProj).find('input[value="Apples"]').prop('checked',true)
}
});
});











