Hi all,
I am experiencing a problem with the scrollbars of a page where I have webhierarchical datagrid placed inside a webtab.
The grid's horizontal scrollbar never seems to be visible. One is still able to scroll by holding in the mouse scroll button, but this is not the expected nor the required behavior.
I have included an example of the behavior I am experiencing.
What I would like to know is if it will be possible, based on the supplied sample to disable the webtab scrollbars, but have the grid make its scrollbars visible if/and when required based on the browser window size.
I have implemented a fix suggested in one of the blogs by wrapping the grid in a div and specifying some of the style properties, but this has not resolved the issue.
I have also tried the grid and webtab clientside properties for height and width, but this has not yielded and successful results.
My environment is as follows:
VS2010
IE9
Widows 7 32 bit.
Infragistics ASP.Net Version 11.2.20112.2086
.Net 4
DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"
Regards.
Hi JJB,
Could you please attach a screenshot of what you are seeing, just to be sure I understand what’s wrong with the scrollbars. Here is what I see when I first run your project:
And after I add width=”100%” to Table1:
Hi Nikolay,
I have implemented the fix as suggested, but the problem as described is persisting.
Any other ideas?
I tested your sample and I was able to reproduce the described issue under Chrome and Firefox. IE 9 displayed the scrollbar correctly. However, I would suggest you to set some width for Table1, because the WebTab have width="100%", which forces the control to take the whole width of its parent. For example:
<table id="Table1" runat="server" frame="void" cellspacing="0" cellpadding="0" style="table-layout: fixed;"
height="100%" width="100%">
<tr>
<td style="height:100%;" >
<ig:WebTab ID="WebTab1" runat="server" Height="100%" Width="100%"
EnableOverlappingTabs="True" DisplayMode="Scrollable">
...
Please let me know if this helps.
Hello Nikolay,
Please refer to my post in this blog on 05-10-2012 12:25 PM - as I have not had any reply regarding the post.
Hello JJB,
I'm just following up to see if you have resolved your issue.