I've got a cascading dropdown question. I'm trying to accomplish this with using SPServices , but I'm running into difficulty when two of the fields should just auto populate. Here's an example:
App: User: Admin: level: x bob joe 3,8,9 y carol anna 2,3,1 j frank lynn 7,9,0
so, if the user selects: "x" it should auto populate "bob" and "joe"..... level will stay a selector.
Any help?? Should I go about this totally different?
Here's an example of how it should work, but with fields from a sharepoint list : Example
Here is the script that I'm currently using.
<script language="javascript" type="text/javascript" src="../../../../SiteCollectionDocuments/jquery.SPServices-0.5.8.js"></script>
<script language="javascript" type="text/javascript">
$(document).ready(function() {
$().SPServices.SPCascadeDropdowns({
relationshipList: "Business_Owners",
relationshipListParentColumn: "Apps",
relationshipListChildColumn: "Title",
parentColumn: "Application",
childColumn: "Business Owner",
debug: true
});
$().SPServices.SPCascadeDropdowns({
relationshipList: "Security_Admins",
relationshipListParentColumn: "Application",
relationshipListChildColumn: "Title",
parentColumn: "Application",
childColumn: "Security Admin",
debug: true
});
$().SPServices.SPCascadeDropdowns({
relationshipList: "Security_Level",
relationshipListParentColumn: "Application",
relationshipListChildColumn: "Title",
parentColumn: "Application",
childColumn: "Security Level",
debug: true
});
});
</script>
I tried applying this HERE with no luck.