显示/隐藏列在富:extendedDataTable (RichFaces 4.x)



RichFaces的rich:extendedDataTable的显示/隐藏列功能在版本4.x中不再可用。有任何想法如何以其他方式实现它吗?

我尝试使用JavaScript,使用document.getElementById()函数并设置元素的style.display属性,但是很难通过id找到元素,因为rich:table中的所有元素都是动态生成的。

您可以使用css样式来同时控制该列的标题和正文。每个列的css样式是用前缀"创建的。和列id。如果你有一个id为"column1"的列,css样式将是"。rf-edt-c-column1"。下面是在Java Script中隐藏/显示列id为column的示例:

<script type="text/javascript">
//<![CDATA[ 
    function hideColumn(columnId)
    {
        var styleSheets = document.styleSheets;
        for(var i=0;i<styleSheets.length;i++)
        {
            var rules = null;
            // IE and Chrome
            if(styleSheets[i].rules != null)
            {
                rules = styleSheets[i].rules;
            }
            // Firefox
            else if(styleSheets[i].cssRules != null)
            {
                rules = styleSheets[i].cssRules;
            }
            for(var j=0;j<rules.length;j++)
            {
                // Find the css style of that column
                if(rules[j].selectorText==".rf-edt-c-" + columnId)
                {
                    rules[j].style.display = "none";
                }
            }
        }
    }
    function showColumn(columnId)
    {
        var styleSheets = document.styleSheets;
        for(var i=0;i<styleSheets.length;i++)
        {
            var rules = null;
            // IE and Chrome
            if(styleSheets[i].rules != null)
            {
                rules = styleSheets[i].rules;
            }
            // Firefox
            else if(styleSheets[i].cssRules != null)
            {
                rules = styleSheets[i].cssRules;
            }
            for(var j=0;j<rules.length;j++)
            {
                // Find the css style of that column
                if(rules[j].selectorText==".rf-edt-c-" + columnId)
                {
                    rules[j].style.display = "";
                }
            }
        }
    }
//]]>
</script>

visible="false"属性放到the rich:column标签中,像这样:

<rich:column id="name" label="Name" sortable="true" sortBy="#{edt.name}" visible="false">

错误的RichFaces版本,对不起

我在rich:column属性中添加了这个:

width="#{myBean.testDisplay('toDisplay')?'':'0px;border:none;'}"

它比使用rendered更好,因为rendered在列重新排列时存在错误。

相关内容

  • 没有找到相关文章

最新更新