SharePoint 现代:是否可以使用特定列表的命令集添加自定义操作或如何激活特定列表的自定义操作? 我正在尝试为特定列表开发自定义操作,但是当我在 SharePoint 租户中部署此自定义操作时,会为所有列表(相同类型的列表模板)添加此自定义操作。
问问题
123 次
2 回答
0
这是我将命令集扩展限制为特定列表的测试解决方案。
我们可以通过 获取当前列表标题this.context.pageContext.list.title
。
@override
public onListViewUpdated(event: IListViewCommandSetListViewUpdatedParameters): void {
const compareOneCommand: Command = this.tryGetCommand('COMMAND_1');
if (compareOneCommand) {
// This command should be hidden unless exactly one row is selected.
compareOneCommand.visible = this.context.pageContext.list.title === 'MyList3';
}
}
于 2018-12-28T06:46:17.293 回答
0
是的,它是..您可以使用列表 id 检查它,如果匹配,则 make command.visible == true
于 2019-03-29T06:20:55.887 回答