I'm using the following code and I have checked, rechecked and then checked again to make sure the values that I'm using are correct so I'm hoping to just having some different eyes will make the difference.
Using the code below, the first drop-down set doesn't work, it shows all the values in the "SME Category" column regardless of which "Product" is selected, however the second drop-down works exactly as expected having the "SME Topic" options change accordingly to the value selected for "SME Category".
This had been working at one point just fine without me making any changes to the code, but something has gotten messed up somewhere and I can't figure out what. Any help is appreciated.
Using the code below, the first drop-down set doesn't work, it shows all the values in the "SME Category" column regardless of which "Product" is selected, however the second drop-down works exactly as expected having the "SME Topic" options change accordingly to the value selected for "SME Category".
This had been working at one point just fine without me making any changes to the code, but something has gotten messed up somewhere and I can't figure out what. Any help is appreciated.
<script language="javascript" src="/teams/scem/SiteAssets/jQuery-1.8.3.js" type="text/javascript"></script>
<script language="javascript" src="/teams/scem/SiteAssets/jQuery.SPServices-2013.01.js" type="text/javascript"></script>
<script language="javascript" type="text/javascript">
$(document).ready(function(){
$().SPServices.SPCascadeDropdowns({
relationshipList: "SMELevel1",
relationshipListParentColumn: "Product",
relationshipListChildColumn: "Title",
parentColumn: "Product",
childColumn: "SME Category",
matchOnId: true
});
$().SPServices.SPCascadeDropdowns({
relationshipList: "SMELevel2",
relationshipListParentColumn: "SMELevel1",
relationshipListChildColumn: "Title",
parentColumn: "SME Category",
childColumn: "SME Topic",
matchOnId: true
});
});
</script>