I am having trouble with the CAMLQuery ... it is not working but the main relationship is not failing. I have confirmed the field name to be correctly spelled. Could the bit type be an issue? Here is my code:
$(document).ready(function() {
$().SPServices.SPCascadeDropdowns({
relationshipList: "{AD30E2F6-DD99-4EB3-9611-7290983C14BE}", //LiaisonsList library
relationshipListParentColumn: "Client_Lookup",
relationshipListChildColumn: "LiaisonCODE",
parentColumn: "Client_Lookup",
childColumn: "Liaison_Lookup",
CAMLQuery: "<Eq><FieldRef Name='archive'/><Value Type='Bit'>0</Value></Eq>", //search for items not archived where no = 0?
debug: true});
});
↧