Absolutly newbie trying to get Cascading DropDown working but it just won't work...
No cascade when I choose Country...
To keep it even more simple I'm trying with just one relation...and yes, I'v read the documentaiton but it seems that I'm starring myself blind on my code so please bare over with me...
Here is my code...
Using SharePoint Foundation 2010 and IE 8
No cascade when I choose Country...
To keep it even more simple I'm trying with just one relation...and yes, I'v read the documentaiton but it seems that I'm starring myself blind on my code so please bare over with me...
Here is my code...
<script type="text/javascript" src="../Utilities/jquery-1.8.3.min.js"></script>
<script type="text/javascript" src="../Utilities/jquery.SPServices-0.7.2.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$().SPServices.SPCascadeDropdowns({
relationshipList: "{4ED5F238-61BA-4EC2-97BD-84EC3FB6585E}",
//GUID of my Region list
relationshipListParentColumn: "Country",
//LookUp field in Region list to Countries list
relationshipListChildColumn: "Title",
// Single text field - Title field in Region list holding all the regions
parentColumn: "Country",
//Column display name in my Form
childColumn: "Region",
//Column display name in my Form
debug: true
});
});
</script>
I'm very gratefull for any help...Using SharePoint Foundation 2010 and IE 8