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
320
In ultrawebgrid Scroll Bar is not display in firefox when Grid is blank.
posted

Hello All,

i have facing one issue which describe below.

i have taking one ultrawebgrid which have 7 columns not fit in one window so need to display horizontal scroll bar in firefox to reach last column for inserting data.

when no data inside webgrid then "Horizontal" scroll bar is not display that issue only in firefox same one works in IE browser.

code below.

<igtbl:UltraWebGrid ID="UltraWebGrid1" runat="server">

<Bands>

<igtbl:UltraGridBand>

<Columns>

<igtbl:UltraGridColumn BaseColumnName="No" Key="No" Width="100px">

<Header Title="No" Caption="No"></Header>

</igtbl:UltraGridColumn>

<igtbl:UltraGridColumn BaseColumnName="Name" Key="Name" Width="300px">

<Header Title="Name" Caption="Name"></Header>

</igtbl:UltraGridColumn>

<igtbl:UltraGridColumn BaseColumnName="Country" Key="Country" Width="300px">

<Header Title="Country" Caption="Country"></Header>

</igtbl:UltraGridColumn>

<igtbl:UltraGridColumn BaseColumnName="State" Key="State" Width="500px">

<Header Title="State" Caption="State"></Header>

</igtbl:UltraGridColumn>

<igtbl:UltraGridColumn BaseColumnName="city" Key="city" Width="300px">

<Header Title="city" Caption="city"></Header>

</igtbl:UltraGridColumn>

<igtbl:UltraGridColumn BaseColumnName="Address" Key="Address" Width="300px">

<Header Title="Address" Caption="Address"></Header>

</igtbl:UltraGridColumn>

<igtbl:UltraGridColumn BaseColumnName="PhNo" Key="PhNo" Width="500px">

<Header Title="PhNo" Caption="PhNo"></Header>

</igtbl:UltraGridColumn>

</Columns>

</igtbl:UltraGridBand>

</Bands>

<DisplayLayout AutoGenerateColumns="False" AllowColSizingDefault="Free" AllowColumnMovingDefault="None"

RowSelectorsDefault="No" AllowSortingDefault="Yes" AllowUpdateDefault="Yes" BorderCollapseDefault="Separate"

FixedHeaderIndicatorDefault="Button" HeaderClickActionDefault="SortSingle" ScrollBar="Always" ScrollBarView="Horizontal"

RowHeightDefault="20px" SelectTypeRowDefault="Extended" StationaryMargins="Header"

StationaryMarginsOutlookGroupBy="True" TableLayout="Fixed" HeaderTitleModeDefault="Always"

UseFixedHeaders="True" SelectTypeCellDefault="Extended" AllowAddNewDefault="Yes"

EnableInternalRowsManagement="false">

<RowStyleDefault BorderStyle="Solid" BorderWidth="1px">

<BorderDetails ColorTop="gray" ColorLeft="gray" ColorRight="gray" ColorBottom="gray" />

<Padding Left="2px" Right="2px" />

</RowStyleDefault>

<FrameStyle Width="100%" Height="100%"></FrameStyle>

<HeaderStyleDefault Font-Bold="True" HorizontalAlign="Center" TextOverflow="Ellipsis" />

<AddNewBox>

<BoxStyle BackColor="Window" BorderColor="InactiveCaption" BorderStyle="Solid" BorderWidth="1px">

<BorderDetails ColorLeft="White" ColorTop="White" WidthLeft="1px" WidthTop="1px" />

</BoxStyle>

</AddNewBox>

<AddNewRowDefault View="Top" Visible="Yes" />

</DisplayLayout>

</igtbl:UltraWebGrid>

but when i have add one row in grid then "Horizontal scroll bar" is display in firefox (Note: Not in store Database just uncommited data on Grid).

i have also try ScrollBar="Always" ScrollBarView="Horizontal" but it is display on webgrid but status is disable.

so i can not reach at last column through tabs without adding record in blank webgrid.

so can you pls help me for above issue for display Horizontal scroll bar in fire fox when grid is blank.webgrid without data

Thanks in Advance.

Parents
No Data
Reply
  • 80
    posted

    I have the same problem also with Internet Explorer. When I set a filter in the columns "outside" the window which won't return a result the scrollbar is disabled and I can't reset the filter anymore.

     

    Is there a solution for that?

     

    Thanks.

Children