> Anyone knows how to get the TreeTable Horizontal Scrollbar? If possible 
share the code snippet.
> Regards
> Vikash


Didn't you find any CSS Examples using Google?

This really is not a Wicket question, but a CSS question. However, I did a 
CSS Example for you.
Is this what you're looking for (click URL to see image)?

http://img514.imageshack.us/img514/1294/wicketscrollingtreetabl.jpg

It's all CSS. I took the Wicket TreeTable Example and added the following 
CSS (quick and dirty, there are more ways).
The magic is the CSS overflow-x: scroll;

<wicket:head>
    <style>

        div.my-tree  {
            height: 20em;
            width:1500px;
        }

        div.c {
            width:1250px;
            overflow-x: scroll;
        }
    </style>
</wicket:head>

<wicket:extend>
    <div class="c">
        <div wicket:id="treeTable" class="my-tree">
        </div>
    </div>
</wicket:extend>


Reply via email to