从脚本设置BIRT交叉表单元格的宽度

时间:2012-10-09 04:49:22

标签: birt

如何从事件中设置交叉表单元格? 我试着做了

 this.width="0in";
从onCreate()事件

但它不起作用。我需要帮助

1 个答案:

答案 0 :(得分:2)

如果您只是想隐藏单元格,可以在交叉表脚本中尝试这样的操作:

function onCreateCell( cellInst, reportContext )
{
    if (cellInst.getCellID() == cellID#){
        cellInst.getStyle().setDisplay("none");
    }
}

这是来自此实际帖子的链接。它显示了另一个选项,用于设置实际宽度:http://www.birt-exchange.org/org/forum/index.php/topic/22736-dynamically-change-column-width-cross-tab/