gpt4 book ai didi

SharePoint:以编程方式隐藏列表字段

转载 作者:行者123 更新时间:2023-12-04 06:01:20 24 4
gpt4 key购买 nike

我试图隐藏列表中的“标题”字段。
这似乎不起作用:

SPList myList;
...
SPField titleField = myList.Fields.GetField("Title");
//titleField.PushChangesToLists = true; <-- doesn't seem to make a difference
titleField.ShowInEditForm = false;
titleField.ShowInDisplayForm = false;
titleField.ShowInNewForm = false;
titleField.Update();
//myList.Update(); <-- make no difference

我究竟做错了什么?

最佳答案

尝试这个:

field.Hidden = true;
field.Update();

关于SharePoint:以编程方式隐藏列表字段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/290322/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com