【问题标题】:condition is not working in Birt条件在 Birt 中不起作用
【发布时间】:2018-01-29 19:12:49
【问题描述】:

我正在努力实现这一目标: 如果特定行缺少任何数据,我希望您将该行设置为 TWICE 高并带有下划线。谁能建议我该怎么做。我的 if 条件是

if (row["Post_Converted"] || row["StatusDesc"] || row["RowVersionInitials"]) = null{
// add table border for that particular row 

}

请给我一些建议

【问题讨论】:

    标签: javascript birt


    【解决方案1】:

    比较是用== 完成的,每个值都需要自己的值来比较。我建议你从学习 JavaScript 的基础开始。

    if (row["Post_Converted"] == null || row["StatusDesc"] == null || row["RowVersionInitials"] == null) {
        // add table border for that particular row 
    
    }
    

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 2018-09-03
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2013-10-09
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多