Hi Mark,
I have got it working by adding relationshipWebURL: "/" to the script.
In my circumstances of Office 365 - SharePoint 2013 it looks like this is required although I have only tested on one Office 365 instance so there may be something else going on.
Anyways, the following works for me:
Aidan
I have got it working by adding relationshipWebURL: "/" to the script.
In my circumstances of Office 365 - SharePoint 2013 it looks like this is required although I have only tested on one Office 365 instance so there may be something else going on.
Anyways, the following works for me:
<script language="javascript" src="/jquery/jquery-1.7.2.min.js" type="text/javascript"></script>
<script language="javascript" src="/jquery/jquery.SPServices-2013.01.js" type="text/javascript"></script><script type="text/javascript">
$(document).ready(function() {
$().SPServices.SPCascadeDropdowns({
relationshipList: "{CE3E9B95-5D6A-45B7-9D2B-0459F0147E79}",
relationshipWebURL: "/",
relationshipListParentColumn: "Company_x0020_Lookup",
relationshipListChildColumn: "FullName",
parentColumn: "Company Lookup",
childColumn: "Contact Lookup"
});
}); </script>
Thanks for your help.Aidan