Hi,
I've found this problem. I'm confident my list structure is ok, as when I use Firefox the item is correctly posted, and the links are correct. It seems to be a problem in IE?
The calling structure and list structure is shown below.
Tony
I've found this problem. I'm confident my list structure is ok, as when I use Firefox the item is correctly posted, and the links are correct. It seems to be a problem in IE?
The calling structure and list structure is shown below.
$(document).ready(function() {
// Set up the cascade from Account to Client contact
$().SPServices.SPCascadeDropdowns({
relationshipList: "Contacts_sync",
relationshipListParentColumn: "Account",
relationshipListChildColumn: "FullName",
parentColumn: "Account",
childColumn: "Contact",
listName: "Meetings and Calls",
simpleChild: true
});
$().SPServices.SPCascadeDropdowns({
relationshipList: "Site Locations",
relationshipListParentColumn: "Account",
relationshipListChildColumn: "Title",
parentColumn: "Account",
childColumn: "Location",
listName: "Meetings and Calls",
simpleChild: true
});
});
Thanks,Tony