Hi Mcburley,
Did you find a solution to your issue?
I am facing, what seems like, the exact same issue?
The first "spcascadedropdown block" works but the subsequent 2 don't?
I am using jquery 1.10.2 and spservices-2013.02a
Swapping the blocks around, makes not difference, as mentioned above, the first one always works but the subsequent 2 don't?
code below:
Did you find a solution to your issue?
I am facing, what seems like, the exact same issue?
The first "spcascadedropdown block" works but the subsequent 2 don't?
I am using jquery 1.10.2 and spservices-2013.02a
Swapping the blocks around, makes not difference, as mentioned above, the first one always works but the subsequent 2 don't?
code below:
<script type="text/javascript" >
$(document).ready(function() {
$().SPServices.SPCascadeDropdowns({
relationshipList: "TTR",
relationshipListParentColumn: "Location",
relationshipListChildColumn: "Title",
parentColumn: "Location",
childColumn: "TTR",
simpleChild: true,
debug: true
});
$().SPServices.SPCascadeDropdowns({
relationshipList: "TTD",
relationshipListParentColumn: "Location",
relationshipListChildColumn: "Title",
parentColumn: "Location",
childColumn: "TTD",
simpleChild: true,
debug: true
});
$().SPServices.SPCascadeDropdowns({
relationshipList: "DeptUsrLookup",
relationshipListParentColumn: "Locations",
relationshipListChildColumn: "Title",
parentColumn: "Location",
childColumn: "Department",
simpleChild: true,
debug: true
});
});
</script>