You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@wicket.apache.org by arunarapole <ar...@gmail.com> on 2010/08/14 00:15:20 UTC

How to add Scroll to tabpanel

Hi

Is any one knows how to add scrollbar to tabpanel in wicket

i have a dataview under tabpanel ,i have to add scrollbar to that panel

if any idea please share with me 

Thanks
Aruna
-- 
View this message in context: http://apache-wicket.1842946.n4.nabble.com/How-to-add-Scroll-to-tabpanel-tp2324822p2324822.html
Sent from the Wicket - User mailing list archive at Nabble.com.

Re: How to add Scroll to tabpanel

Posted by arunarapole <ar...@gmail.com>.
Thank you very much i got that


Regards
Aruna.R


On Mon, Aug 16, 2010 at 8:48 AM, vineetsemwal [via Apache Wicket] <
ml-node+2326816-1331009021-136832@n4.nabble.com<ml...@n4.nabble.com>
> wrote:

> i meant don't add style in wicket:panel tag ,add it to say div..
> <wicket:panel>
> <div style=" my style">
> your markup
> </div>
> </wicket:panel>
> vineet semwal
>
>
> ------------------------------
>  View message @
> http://apache-wicket.1842946.n4.nabble.com/How-to-add-Scroll-to-tabpanel-tp2324822p2326816.html
> To unsubscribe from Re: How to add Scroll to tabpanel, click here<http://apache-wicket.1842946.n4.nabble.com/template/NodeServlet.jtp?tpl=unsubscribe_by_code&node=2325315&code=YXJ1bmFrdW1tYXJpQGdtYWlsLmNvbXwyMzI1MzE1fC00Njg4NjYxODg=>.
>
>
>


--

-- 
View this message in context: http://apache-wicket.1842946.n4.nabble.com/How-to-add-Scroll-to-tabpanel-tp2324822p2327131.html
Sent from the Wicket - User mailing list archive at Nabble.com.

Re: How to add Scroll to tabpanel

Posted by vineetsemwal <vi...@gmail.com>.
i meant don't add style in wicket:panel tag ,add it to say div..
<wicket:panel>
<div style=" my style">
your markup
</div>
</wicket:panel>

-----
vineet semwal
-- 
View this message in context: http://apache-wicket.1842946.n4.nabble.com/How-to-add-Scroll-to-tabpanel-tp2324822p2326816.html
Sent from the Wicket - User mailing list archive at Nabble.com.

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@wicket.apache.org
For additional commands, e-mail: users-help@wicket.apache.org


Re: How to add Scroll to tabpanel

Posted by arunarapole <ar...@gmail.com>.
Do i need to create css file for that

On Mon, Aug 16, 2010 at 1:45 AM, vineetsemwal [via Apache Wicket] <
ml-node+2326413-28146642-136832@n4.nabble.com<ml...@n4.nabble.com>
> wrote:

> don't add them in <wicket:panel/>
> vineet semwal
>
>
> ------------------------------
>  View message @
> http://apache-wicket.1842946.n4.nabble.com/How-to-add-Scroll-to-tabpanel-tp2324822p2326413.html
> To unsubscribe from Re: How to add Scroll to tabpanel, click here<http://apache-wicket.1842946.n4.nabble.com/template/NodeServlet.jtp?tpl=unsubscribe_by_code&node=2325315&code=YXJ1bmFrdW1tYXJpQGdtYWlsLmNvbXwyMzI1MzE1fC00Njg4NjYxODg=>.
>
>
>


-- 


Regards
Aruna.R
404-988-5562

-- 
View this message in context: http://apache-wicket.1842946.n4.nabble.com/How-to-add-Scroll-to-tabpanel-tp2324822p2326753.html
Sent from the Wicket - User mailing list archive at Nabble.com.

Re: How to add Scroll to tabpanel

Posted by vineetsemwal <vi...@gmail.com>.
don't add them in <wicket:panel/>

-----
vineet semwal
-- 
View this message in context: http://apache-wicket.1842946.n4.nabble.com/How-to-add-Scroll-to-tabpanel-tp2324822p2326413.html
Sent from the Wicket - User mailing list archive at Nabble.com.

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@wicket.apache.org
For additional commands, e-mail: users-help@wicket.apache.org


Re: How to add Scroll to tabpanel

Posted by arunarapole <ar...@gmail.com>.
Hi Thomerson

below code mentioned but it is not showing any scroll bar 
is any other way is their


<body>

 
 <div id="pagecontent">

 <wicket:panel wicket:id="panel"
style="width:120px;height:120px;overflow-y:scroll;padding:5x">

 <h5 align="right">DataView Navigator</h5>

 			<table class="report" cellspacing="0" cellpadding="0" style="margin-top:
15px; padding-left: 50px;">
				
				<thead>
					<tr>
					<th ></th>

				</tr>
				</thead>
				<tbody>
		  		<tr wicket:id="alertRow">
<td></td>
<td></td>
                                  </tr>
		  		
		  		</tbody>
		  	</table>
		  	
		 </wicket:panel>	
	
		</div>
 
      </body>

 </html>

Thank you
Aruna

-- 
View this message in context: http://apache-wicket.1842946.n4.nabble.com/How-to-add-Scroll-to-tabpanel-tp2324822p2325315.html
Sent from the Wicket - User mailing list archive at Nabble.com.

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@wicket.apache.org
For additional commands, e-mail: users-help@wicket.apache.org


Re: How to add Scroll to tabpanel

Posted by Jeremy Thomerson <je...@wickettraining.com>.
CSS?  overflow?


-- 
Jeremy Thomerson
http://www.wickettraining.com


On Fri, Aug 13, 2010 at 5:15 PM, arunarapole <ar...@gmail.com> wrote:

>
> Hi
>
> Is any one knows how to add scrollbar to tabpanel in wicket
>
> i have a dataview under tabpanel ,i have to add scrollbar to that panel
>
> if any idea please share with me
>
> Thanks
> Aruna
> --
> View this message in context:
> http://apache-wicket.1842946.n4.nabble.com/How-to-add-Scroll-to-tabpanel-tp2324822p2324822.html
> Sent from the Wicket - User mailing list archive at Nabble.com.
>