Tell me more ×
SharePoint Stack Exchange is a question and answer site for SharePoint enthusiasts. It's 100% free, no registration required.

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.

share|improve this question

closed as not a real question by SPDoctor, Alex Angas Aug 8 '11 at 2:34

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

It's not totally clear what you're trying to do (which may be why you haven't received any answers).

What you show above looks like valid calls to SPServices. If you could explain a bit more about what you want to happen, I can probably help more.

share|improve this answer