Thanks Mark,
I got it working a few days ago, I have another question with cascading drop down. How do I get a child to be related to multiple parents?
For example X in column C will only be available if Column B is equal to Y and Column A is equal to Z.
Would adding another parameter here work?
$().SPServices.SPCascadeDropdowns({
});
$().SPServices.SPCascadeDropdowns({
});
OR can I set the relationship using CAMLQuery?
Thanks Again,
I got it working a few days ago, I have another question with cascading drop down. How do I get a child to be related to multiple parents?
For example X in column C will only be available if Column B is equal to Y and Column A is equal to Z.
Would adding another parameter here work?
$().SPServices.SPCascadeDropdowns({
relationshipList: "{7691E83F-09AA-4025-B9D3-F50922769E97}",
relationshipListParentColumn: "B",
relationshipListChildColumn: "C",
CAMLQuery:"<Eq><FieldRef Name='Parent'/><Value Type='Text'>"+CurrentValue+"</Value></Eq>",
parentColumn: "B",
childColumn: "C",
debug: true
});});
$().SPServices.SPCascadeDropdowns({
relationshipList: "{7691E83F-09AA-4025-B9D3-F50922769E97}",
relationshipListParentColumn: "A",
relationshipListChildColumn: "C",
CAMLQuery:"<Eq><FieldRef Name='Parent'/><Value Type='Text'>"+CurrentValue+"</Value></Eq>",
parentColumn: "A",
childColumn: "C",
debug: true
});});
OR can I set the relationship using CAMLQuery?
Thanks Again,