Click here to Skip to main content
15,891,248 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi all,

In my application I am using ajax TabContainer inside that I have 3 TabPanels.
I just want to show a vertical scroll bar to only single tab panel Inside that.My TabContainer is inside the content page which is having single master page.I set the property to tabpanel like "ScrollBars="Vertical" but its not working.Then I tried to set div tag like
inside the content template of Tab panel still it wont work.

Can anybody help to achieve that.
Posted
Updated 24-Mar-15 1:34am
Comments
ramyajaya 24-Mar-15 20:06pm    
Scrollbars will not work in below cases use browser developer tools to check which property failed in your case

1. if the panel doesn't have a defined width since it will not when to scroll

2, if the panel style overflow property is not set to scroll


Try adding style="overflow-y:scroll"
YOGESH DHAGE 26-Mar-15 2:21am    
I set the the Tab panel like below.
<asp:TabPanel ID="tbDefaultSettings2" runat="server" HeaderText="Default Settings" style="overflow-y:scroll" Height="50%">

still it wont work

so I put panel Inside the tabpanel like
<asp:Panel runat="server" ID="cntPnl" Height="50%" style="overflow-y:scroll">

still wont work....
any other suggetion that I can try out.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900