任务列表数据视图Web部件xsl修改

发布于 2024-10-30 18:05:04 字数 170 浏览 2 评论 0原文

我的应用程序是一个审批系统。我正在从任务列表创建数据视图以显示文档的当前状态,并根据标题对它们进行分组,如果我计算每个组标题中的项目数,我可以将其称为当前级别,如果在标题组内没有状态为“未开始”的任务,我需要显示标题/文档已批准。如果我不必在我的数据视图中显示此类批准的文档,那就更好了。如何通过xsl编辑在SPD中实现这一点

My application is an apporval system.I am creating data view from a task list to show the current status of the doc, and grouping them based on title, if i take the count of items in each group title i get to call it as current level, If within a title group there are no task with status as 'Not started' I need to display that the title/doc is approved. It would be even better if i dont have to show such approved doc in my data view. How to achieve this in SPD by xsl editing

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

初熏 2024-11-06 18:05:04

我最终得到的解决方案很简单...如果特定标题没有处于“未开始”状态的任务,它将显示为“已批准”。对于剩余标题,它只会显示组数...

<xsl:if test="count($nodeset[@Status='Not Started'])=0">Approved </xsl:if>

The solution i ended up with was simple...If there are no task with 'Not Started' status for a particular title it will display as Approved. For remaining title it will just display the group count...

<xsl:if test="count($nodeset[@Status='Not Started'])=0">Approved </xsl:if>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文