我得到了一个带有标记的模板###无论###设置为TEXT并填充.value 我需要隐藏或清空标记 IF 其中一列为空(在我的情况下正常列colPos = 0 )
答案 0 :(得分:3)
如果正常(colPos = 0)列中没有内容,则这是阻止显示标记数据的条件。
YOUR_MARKER = TEXT
YOUR_MARKER {
# ...your definitions...
# Check whether there's any content in the column 0
if.isTrue.cObject = CONTENT
if.isTrue.cObject {
table = tt_content
select {
where = colPos=0
}
renderObj < tt_content
}
}
YOUR_MARKER显然必须是正确的路径,例如page.10.subparts.YOUR_MARKER。