Disable column resizing in <rich: extendedDataTable>

I am using rich: extendedDataTable to display a table. But I need to disable column resizing in this table. I tried using the width component in rich: column, but I get the same. Even I used the css class to fix the size of the column, which is also not worth it. Any way out?

+3
source share
1 answer

Cannot disable column resizing inside the tag itself <rich:extendedDataTable>. However, with a little CSS, to hide an element that allows you to resize, you can accomplish what you are trying to do:

<style type="text/css">
    .extdt-hsep {
        display: none;
    }
</style>

, . , , (: , - 100%).

+3

Source: https://habr.com/ru/post/1731149/


All Articles