I have three SharePoint 2016 lists:
- The organization
- Departments
- Groups
Groups are sorted by Department, and departments are sorted by organization.
The title field in each list is used for the group name, org or dept, and each list has a drop-down list to select the parent element of the corresponding element.
In one of my forms, the user must select the organization, department and group to which the specific software name belongs. I am trying to use SPServices.SPCascadeDropdowns to show only departments for the selected organization, but does nothing.
Relative fields in the form:
<td valign="top" class="ms-formlabel">
<H3 class="ms-standardheader">
<nobr>Organization<span class="ms-formvalidation"> *</span></nobr>
</H3>
</td>
<td valign="top" class="ms-formbody">
<SharePoint:FormField runat="server" id="ff9{$Pos}" ControlMode="New"
FieldName="Organization"
__designer:bind="{ddwrt:DataBind('i',concat('ff9',$Pos),'Value','ValueChanged','ID',ddwrt:EscapeDelims(string(@ID)),'@Organization')}"/>
<SharePoint:FieldDescription runat="server" id="ff9description{$Pos}" FieldName="Organization" ControlMode="New"/>
</td>
<td valign="top" class="ms-formlabel">
<H3 class="ms-standardheader">
<nobr>Department<span class="ms-formvalidation"> *</span></nobr>
</H3>
</td>
<td valign="top" class="ms-formbody">
<SharePoint:FormField runat="server" id="ff10{$Pos}" ControlMode="New"
FieldName="Department"
__designer:bind="{ddwrt:DataBind('i',concat('ff10',$Pos),'Value','ValueChanged','ID',ddwrt:EscapeDelims(string(@ID)),'@Department')}"/>
<SharePoint:FieldDescription runat="server" id="ff10description{$Pos}" FieldName="Department" ControlMode="New"/>
</td>
The javascript I'm using is:
$(document).ready(function(){
$().SPServices.SPCascadeDropdowns({
relationshipList: "{xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx}",
relationshipListParentColumn: "Organization",
relationshipListChildColumn: "Title",
parentColumn: "Organization",
childColumn: "Department",
debug: true
});
});
jQuery 3.2.1 jQuery.SPServices-2014.02.min.js. Chrome, . $(). SPServices, , , . , ?