今天是个好日子!

如何获取列包含的项目数?我想要
隐藏“工作组”列(如果为空),我不知道如何。

            Table tblTeachings = new Table();
            tblTeachings.addContainerProperty("#", Integer.class,0);
            tblTeachings.addContainerProperty("Course",String.class,"");
            tblTeachings.addContainerProperty("Teaching name",String.class,"");
            tblTeachings.addContainerProperty("Start date",String.class,"");
            tblTeachings.addContainerProperty("End Date",String.class,"");
            tblTeachings.addContainerProperty("Activity status",String.class,"");
            tblTeachings.addContainerProperty("Participated",String.class,"");
            tblTeachings.addContainerProperty("Workgroup",String.class,"");
            tblTeachings.setSizeFull();

            if(/*I don't know what condition should I put here*/){
                //hide the emptycolumn
            }


谢谢!

最佳答案

列不包含项目,
行包含项目。

您可以通过将数组传递给setVisibleColumns methos of the Table来设置可见列。

只是折叠列而不隐藏它也是一个主意...

确定此列的所有值是否为空对您来说应该很简单。如果没有,请告诉我们您使用什么数据源。

07-26 05:20