I'm trying to get the cascading dropdowns working on a newitem.aspx page for adding a new document to the doc library. I'm using the SPServices library and I followed this blog http://www.uccorner.com/253/sharepoint/cascading-drop-down-sharepoint-foundation-2010/, however, I can not get it to work.
My first drop down is populated, the 2nd drop down has nothing and when I make my selection in the first dropdown, nothing happens and I get no error messages.
has anyone have any luck in implementing cascading dropdowns in a new item form within SharePoint 2010?
$(document).ready(function() { $().SPServices.SPCascadeDropdowns({ relationshipList: "Sales Contracts", relationshipListParentColumn: "SalesPerson", relationshipListChildColumn: "Contract", parentColumn: "Contract", childColumn: "SalesPerson", debug: true }); });