Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个计算字段,它显示来自文档数据源 #{doc.LastEditedAt} 的日期时间值
computedField 被一个面板包围,如果 LastEditedAt 字段为空,我想通过将 render 属性设置为 false 来隐藏面板,该怎么做?
我同意 Per 的评论:这“听起来”是一个简单的问题,所以我将给出一个简单的答案。如何设置呈现为:
#{javascript:doc.getFirstItem("LastEditedAt").getDateTimeValue() != null}
您可能还想通过检查该字段是否可用来扩展它。