问题标签 [splist]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
sharepoint - 为什么 SPList 的 LastItemModifiedDate 与列表中显示的修改日期不一样?
我有一个文档库,我以SPList
. 当我使用LastItemModifiedDate
列表的属性时,返回的 DateTime 是{1/7/2010 1:37:41 AM}但是当我浏览到文档库(使用我的网络浏览器)时,我可以看到最近修改的日期是7 /01/2010 12:37 PM (这是我编辑文件时的正确当地时间)。
这在我看来像是一个时区问题,但我不确定LastItemModifiedDate
从哪里获取它的设置。
我需要更改哪些内容才能LastItemModifiedDate
与浏览器中显示的时间一致?
sharepoint - SPList 和 SPSite 名称 - 不同的屏幕和文件名 - 可能吗?
是否有可能具有与文件名不同的列表或站点显示名称(在屏幕上)?我的意思是在左侧快速启动栏中显示其他名称而不是文件名本身?例如,我会在屏幕上将列表命名为 A,然后在我的自定义 Web 部件中调用它,例如 B。
提前感谢您的帮助!
sharepoint - 在 SPList 上设置 ForceCheckout
我正在尝试在 SPList 项目上设置 ForceCheckout 属性,但它只是不接受。我正在根据需要调用 Update() 命令。本质上,它应该采取的只是以下两行。
任何想法为什么这不起作用?无论如何,它仍然是 $true。
.net - 如何阻止将相同记录添加到 SPList 的可能性?
是否有可能阻止将相同数据添加到 SPList 的机会?我知道关于 ID 字段,两条记录总是不同的。我想验证我之前添加的其他自定义字段,并且不允许添加相同字段的值。谁能告诉我如何实现这个?我可以猜测事件接收器可能是答案,但我找不到如何将接收器添加到 SPList。谁能告诉我如果我是对的,添加此类事件接收器的分步程序是什么?我想知道如何使用功能文件构建和安装它。
此致
TS
c# - 从父 SharePoint 列表重新继承权限
所以我知道如何从列表中中断继承 (SPList.BreakRoleInheritance(true)),但是如何以编程方式从它的父级重新继承?
谢谢
sharepoint - 查询 SPList 中的日期时间字段
您能告诉我如何使用 CAML 查询将作为 DateTime 字段存储在 SPList 中的日期和时间与当前系统时间进行比较吗?
sharepoint - 可以从 SPWeb 继承吗?
是否可以从 SharePoint 类继承,例如:SPWeb、SPList 等,或者这些类是密封的?我找不到正确的答案。
克里斯
感谢您的回复。丰富,你是对的 - 构造函数是内部的。所以这意味着我不能以任何优雅的方式扩展这些类的功能?
c# - Programatically changing field order in Sharepoint 2007 list
I'm adding in two new fields into an already existing Sharepoint list programmatically through a feature. The fields are being added successfully but I have been unable to adjust the column order.
This task is done simply through the UI by going to List Settings and then Column Ordering, but I have been unable to achieve the task programmatically.
Through some research I've seen that you can use the SPContentType of the form to change the ordering of the FieldLinks (as follows):
In this example, I the list would already have "Example One" and "Example Three" columns, and I would add "Example Two" later and then try to order them.
However this approach did not work for me, so if anyone has input on it, that would be appreciated.
The next item I saw is manually changing the SchemaXml of the list to have the proper order of the fields, but I wanted to see if this was the best method.
Any input would be appreciated, thank you for your help.
sharepoint - Sharepoint 2010:如何持久化 SPList 对象?
我正在编写具有附加功能的共享点资产选择器对话框的替代品。
需要浏览位于其他网站集中的媒体库。所以我添加了一个配置页面,您可以在其中将媒体库的 URL 添加到 sharepoint 属性包中。
在自定义 AssetPicker 对话框中,我将根据配置的 URL 创建的 SPList 对象添加到名为 medialibs 的成员列表中。
我知道处理 SPList 对象所属的 SPWeb 和 SPSite 非常重要。我在页面的 OnUnload 事件中执行此操作,但发现每次回发时都会调用 OnUnload。我无法每次在 OnLoad 中重建 medialibs 列表,因为页面上有一个树视图控件,其中包含对 medialibs 中 SPList 对象的引用。如果我处理并重建它们,这些对象是新的和不同的。树视图不能每次都重建,因为它会丢失打开了哪些节点的信息。
如何通过回发保留媒体库的内容?当用户离开页面时,如何确保正确处理 medialibs 中的 SPList 对象?
谢谢!
sharepoint - 在配置数据库中保存记录
我需要在 sharepoint 中保存一些设置,我可以从任何 web 应用程序访问数据。我应该去配置数据库还是有其他选择。