I have an Ultrawebgrid that is databound to a dataset. The html code is below and I cannot get it to display the horizontal and vertical scrollbars. I thought this was automatic, but I'm missing something somewhere. What do I need to do to display them? Thanks.
<igmisc:WebAsyncRefreshPanel ID="WebAsyncRefreshPanel1" runat="server" ><igtbl:UltraWebGrid ID="igShowAll" runat="server" DisplayLayout-AutoGenerateColumns="true"EnableAppStyling="True" StyleSetName="Claymation" StyleSetPath="~/ig_res/" DisplayLayout-CellPaddingDefault="5"DisplayLayout-Pager-AllowPaging="true" DisplayLayout-Pager-PageSize="500" DisplayLayout-Pager-PagerAppearance="Both"DisplayLayout-ScrollBar="Auto" DisplayLayout-ScrollBarView="Both" ><Bands><igtbl:UltraGridBand><AddNewRow View="NotSet" Visible="NotSet"></AddNewRow></igtbl:UltraGridBand></Bands><DisplayLayout BorderCollapseDefault="Separate" CellPaddingDefault="5" Name="igCARAll"RowHeightDefault="20px" Version="4.00" ScrollBar="Auto" ScrollBarView="Both" ><FrameStyle Height="500px" Width="950px" ></FrameStyle> <Pager Alignment="Left" AllowPaging="True" PagerAppearance="Both" PageSize="500"QuickPages="3" StyleMode="Numeric"><PagerStyle HorizontalAlign="Left" VerticalAlign="Middle" /><ComboStyle HorizontalAlign="Left" VerticalAlign="Middle"></ComboStyle></Pager><ActivationObject BorderColor="" BorderWidth=""></ActivationObject></DisplayLayout></igtbl:UltraWebGrid></igmisc:WebAsyncRefreshPanel>
HelloI managed to reproduce your situation using build 11.1.20111.2036. I tested the sample with IE 9 both modes and Firefox 6.0.1 and in both scrollbars appear but when you don’t use FrameStyle. When you remove it scrollbars will appear normally. Another option for you is to set width and height to the grid which are bigger than the one set in the FramStyle – then this frame will be short for the grid and scrolls will appear to be able to visualize the whole grid. For more information about this property please refer to the following link from our documentation - http://help.infragistics.com/NetAdvantage/ASPNET/2011.1/CLR4.0/?page=Infragistics4.WebUI.UltraWebGrid.v11.1~Infragistics.WebUI.UltraWebGrid.UltraGridLayout~FrameStyle.html
Thanks that did it.