Re: Regarding TreeTable Horizontal Scrollbar

2010-03-15 Thread Leo . Erlandsson
You can solve this by using CSS. E.g. [content] 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

RE: Regarding TreeTable Horizontal Scrollbar

2010-03-15 Thread Vikash Shrivastava
.erlands...@tyringe.com [mailto:leo.erlands...@tyringe.com] Sent: Monday, March 15, 2010 1:56 PM To: users@wicket.apache.org Subject: Re: Regarding TreeTable Horizontal Scrollbar You can solve this by using CSS. E.g.

Re: RE: Regarding TreeTable Horizontal Scrollbar

2010-03-15 Thread Leo . Erlandsson
If you want the entire table to be scrollable horizontally you should probably place the CSS attributes on the top CSS class (wicket-tree-table). Search the net for "CSS horizontal scoll". There should be loads of examples on how to do this using CSS. http://lmgtfy.com/?q=css horizontal scoll

RE: RE: Regarding TreeTable Horizontal Scrollbar

2010-03-15 Thread Vikash Shrivastava
com [mailto:leo.erlands...@tyringe.com] Sent: Monday, March 15, 2010 2:50 PM To: users@wicket.apache.org Subject: Re: RE: Regarding TreeTable Horizontal Scrollbar If you want the entire table to be scrollable horizontally you should probably place the CSS attributes on the top CSS class (wicket

RE: RE: Regarding TreeTable Horizontal Scrollbar

2010-03-18 Thread Vikash Shrivastava
- From: leo.erlands...@tyringe.com [mailto:leo.erlands...@tyringe.com] Sent: Monday, March 15, 2010 2:50 PM To: users@wicket.apache.org Subject: Re: RE: Regarding TreeTable Horizontal Scrollbar If you want the entire table to be scrollable horizontally you should probably place the CSS attributes on

Re: RE: RE: Regarding TreeTable Horizontal Scrollbar

2010-03-18 Thread Leo . Erlandsson
> 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 (c

RE: RE: RE: Regarding TreeTable Horizontal Scrollbar

2010-03-24 Thread Vikash Shrivastava
ursday, March 18, 2010 3:19 PM To: users@wicket.apache.org Subject: Re: RE: RE: Regarding TreeTable Horizontal Scrollbar > 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? Th

Re: RE: RE: RE: Regarding TreeTable Horizontal Scrollbar

2010-03-25 Thread Leo . Erlandsson
Hi, Still a CSS issue, not a Wicket one ;) I used Google to search for "css table locked column scroll" First result was a good StackOverflow-question: http://stackoverflow.com/questions/296020/how-can-i-lock-the-first-row-and-first-column-of-a-table-when-scrolling-possibly Try the Horizontal S

Re: RE: RE: RE: Regarding TreeTable Horizontal Scrollbar

2010-03-26 Thread KameshBh
Hi, I am new to the Wicket and am trying out the TreeTable example. I am facing a more fundmental issue. I am unable to give a fixed width to the middle columns. I can only specify the Unit as Proportional which is dividing the columns proportionally within the available space. Because of this I

Re: Re: RE: RE: RE: Regarding TreeTable Horizontal Scrollbar

2010-03-26 Thread Leo . Erlandsson
Take a look at http://www.wicketframework.org/wicket-extensions/apidocs/wicket/extensions/markup/html/tree/table/ColumnLocation.html Specifying fixed size column should be no harder than adding them as LEFT or RIGHT columns instead of MIDDLE Column. MIDDLE column cannot have a fixed width. You