You can solve this by using CSS.

E.g.

<table>
        <tr><td>
                <div style="width:100%;overflow:auto;white-space:nowrap">
                        [content]
                </div>
        </td></tr> 
</table>

The trick is "overflow:auto" that will add scrollbars when needed.

"overflow-y: scroll; " will give you an always visible scrollbar for the 
y-axis.


>Hi,

>I am using TreeTable Wicket-1.4.5 component in my application. In my 
application, TreeTable may have one to many column based on some 
>selection/event. I want Horizontal scrollbar for TreeTable component to 
see the entire columns when it has many numbers.
>If it needs customization then please let me know how it can be achieved.

Reply via email to