質問

マイクライアントはSharePointで分類法ピッカーコントロールを嫌い、単一レベルの監視にはむしろドロップダウンリストを持つことを理解しています。

理想的には、OOB機能を使用したいと思います。私はTermsetにバインドされているカスタムフィールドを作成することを考えていましたが、検索が検索結果でそれを洗練することができる場合はよくわかりません。

は、ListFieldIteratorクラスを見てから、フィールドの種類に基づいてレンダリングするが、これはカスタムフィールドを作成することに依存します。SharePointがDropDownList 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