Hi Marc,
I am having an issue implementing your code and I tried to search the documentation and discussions to no avail. I may certainly have missed the thread, but I'm desperate now as my rollout date draws closer. I had originally abandoned this code and attempted
a infopath solution but soon found myself back.
I am attempting to get three multi selectable boxes to work, there is a category box, a product box and a family box. what is strange is when I have the category box be multi select and leave product as a drop down box, I can select multiple category
items and when I click the product drop down, all the values for each check box I selected in the multi value box for category show combined in the product drop down. However, when I change the product box from a drop down to a multi value box, all the values
from the list are immediately pulled into the product multi value box with no filtering.
My goal is to have three multi selectable value boxes which cascade based on the previous multi select boxes value, showing combined related values for each checkbox selected in the previous box. Category pulls from the category list, product pulls from CategoryRelationList and SubFamily from CategoryRelationListL3.
Again, I didn't see this specifically in the discussions when I checked. I apologize if this was mentioned already. You have done great work here and I appreciate all the time you have saved me.
<script language="javascript" type="text/javascript">
$(document).ready(function() {
$().SPServices.SPCascadeDropdowns({
listName: "AppSupportProdTest",
relationshipList: "CategoryRelationList",
relationshipListParentColumn: "Category",
relationshipListChildColumn: "Title",
parentColumn: "Category",
childColumn: "Product",
debug: true
});
$().SPServices.SPCascadeDropdowns({
listName: "AppSupportProdTest",
relationshipList: "CategoryRelationListL3",
relationshipListParentColumn: "SubFamily1",
relationshipListChildColumn: "Title",
parentColumn: "Product",
childColumn: "SubFamily",
debug: true
}