Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
160
WebTab's Scrolling not working when the control is placed inside the table element
posted

Hi,

My Scenario is i need to display my control on the "center" of the page. So, i used the HTML table element and placed the weTab controls inside it.

The WebTab's DisplayMode is set to "Scrollable". So that if there are more tabs then user can scroll.

Problem:

The scrolling of webtab is not woking. This happens only if i place the WeTab control inside the table element.If i palce the control outside the table element then I am able to scroll through the tabs.

Can some one please help me out.

<table align="center" width="875px">

<tr>

<td>

<div>

 

 

 

<ig:WebTab ID="WebTab" runat="server" Width="100%" Height="800px" DisplayMode="Scrollable"><ScrollButtons StartSpeed="500" EndSpeed="2000" /><PostBackOptions EnableDynamicUpdatePanels="true" EnableAjax="true" EnableLoadOnDemand="true" EnableLoadOnDemandUrl="true" EnableLoadOnDemandViewState="true" />

 

 

 

 

 

 

<AjaxIndicator Enabled="True" Location="MiddleCenter" BlockArea="Control" ImageUrl="~/Images/ajax-loader.gif" BlockCssClass="ig_AjaxIndicatorBlock" FadeInEquationType="EaseOut" FadeOutEquationType="EaseOut" FadeInDuration="3000" FadeOutDuration="3000" />

<Tabs><ig:ContentTabItem Text="Welcome" AutoSize="True" MarginLeading="1px" MarginTrailing="1px"><Template><table width="100%" height="100%" align="center"><tr><td valign="middle"><h1 style="text-align: center; font-family: Verdana; font-size: medium; vertical-align: middle">Welcome</h1></td></tr></table></Template></ig:ContentTabItem></Tabs>

<ContentPane AutoSize="True"></ContentPane></ig:WebTab></div></td></tr></table>