I need some help regarding SPService use as a client recently ask me if I could develop a solution where 2 columns could filter through the default form NewForm.ASPX as currently implemented the following solution:
$().SPServices.SPCascadeDropdowns({
relationshipList: "Proyectos",
relationshipListParentColumn: "Vigente",
relationshipListChildColumn: "Title",
parentColumn: "ProyectoVigente",
childColumn: "Proyecto",
promptText: "Elija Proyecto",
debug: true
});
$().SPServices.SPCascadeDropdowns({
relationshipList: "SolPed",
relationshipListParentColumn: "Proyecto",
relationshipListChildColumn: "Title",
parentColumn: "Proyecto",
childColumn: "SolPed",
promptText: "Elija SolPed",
debug: true
});
$().SPServices.SPDisplayRelatedInfo({
columnName: "Proyecto",
relatedList: "Proyectos",
relatedListColumn: "Title",
relatedColumns: ["Vigente", "BTIC", "JPI" ],
displayFormat: "table"
});
thanks in advance for your help, and sorry for my bad grammar because English is not my native language.