문제

My Client는 SharePoint에서 분류자 피커 컨트롤을 싫어하며 단일 수준의 조리어가 드롭 다운리스트를 갖도록 의미합니다.

이상적으로 OOB 기능을 사용하고 Custom NewForms 코드를 코드화하고 클라이언트가 열을 추가 / 제거 할 수 있고 양식이 모든 필드를 렌더링 할 수 있도록 편집하고자합니다.저는 규약 세트에 바인딩 된 사용자 정의 필드를 만드는 것을 생각해 왔지만 검색 결과에서 검색 결과를 구현할 수 있는지 확실하지 않습니다.

또한 ListFieldIterator 클래스를보고 필드 유형을 기반으로 렌더링 해 왔지만 이는 사용자 정의 필드를 만드는 것에 따라 다릅니다.SharePoint가 드롭 다운리스트 RO에서 이러한 필드 인스턴스를 렌더링하는 다른 방법이 내 유일한 경로 사용자 정의입니까?

도움이 되었습니까?

해결책

You could do this with script that is applied selectively based on column name or some other defining characteristic.

The trick would be to hide the existing picker (I agree that it feels clunky, though it works OK with the hierarchical data), pull the terms from the store and display them in a select. On selection from the dropdown, you'd populate the picker and validate.

The benefit of this approach is that it is easily reversed and it doesn't change any of the underlying behavior. Oh, and nothing need be deployed server side, so it's great for Office365, too!

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 sharepoint.stackexchange
scroll top