Srikanth HN Ответов: 0

Каскадное выпадающее меню - sharepoint - код не работает


Привет,
Создали 3 списка.
1) Oraganization Name - содержит имя организации
2) имя сотрудника - содержит имя сотрудника и с помощью поиска добавил название организации для каждого сотрудника
3) база данных - здесь я пытаюсь получить каскадный выпадающий список.

Код, используемый в Редакторе скриптов:
<script src="https://site name/jquery.min.js"></script><br />
<script src="https://sitename/jquery.SPServices.min.js"></script><br />
<script type="text/javascript"> <br />
$(document).ready(function ()<br />
{<br />
    $().SPServices.SPCascadeDropdowns(<br />
    {<br />
        relationshipList: "Employee Name",<br />
        relationshipListParentColumn: "Organization Name",<br />
        relationshipListChildColumn: "Title",<br />
        parentColumn: "Organization Name",<br />
        childColumn: "Employee Name",<br />
        debug: true<br />
    })<br />
})<br />
</script>


Но каскадное падение вниз не работает. Он показывает все имена сотрудников. Он должен отображаться на этих сотрудниках для выбранной компании

Что я уже пробовал:

Hi,
Have created 3 lists.
1) Oraganization Name - Contains Org name
2) Employee Name - Contains Employee name and using look-up have added the Organization name for each employee
3) Database - Here I am trying to get the cascade dropdown.

Code used in Script Editor:
<code><script src="https://site name/jquery.min.js"></script>
<script src="https://sitename/jquery.SPServices.min.js"></script>
<script type="text/javascript"> 
$(document).ready(function ()
{
    $().SPServices.SPCascadeDropdowns(
    {
        relationshipList: "Employee Name",
        relationshipListParentColumn: "Organization Name",
        relationshipListChildColumn: "Title",
        parentColumn: "Organization Name",
        childColumn: "Employee Name",
        debug: true
    })
})
</script></code>

But cascading drop down in not working. It's showing all the employee names. It should display on those employees for the selected company

0 Ответов