|
Rank: Newbie Groups: Member
Joined: 9/3/2009 Posts: 4
|
I have developed an application that has 10 columns and 100 rows in the grid.
I have a vertical and horizontal scroll bar. The first 7 columns are in view and I can scroll right to see the other 3.
When I scroll to the right I initially see the columns but as soon as I scroll down to view additional rows they become invisible and I just see the grid backcolour for those columns. When I scroll back to the top they reappear!
This problem does NOT occur in IE7. It does consistently fail in IE8 and Firefox. If I turn compatibility mode in IE8 to IE7 it works again but I have users who use firefox and other browsers so I need to fix it.
Thanks.
|
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
Hi,
Can you check your DLL version? I believe there was an issue similar to this but has been recently fixed.
Thanks!
|
|
Rank: Newbie Groups: Member
Joined: 3/14/2008 Posts: 5
|
I'm experiencing the same problem. My dll version is 6.0.86.2
I'm creating grid columns dynamically.
<div id="EventStaffContent" style="margin-left:15px;"> <eo:Grid id="eoGridEventStaff" Height="300px" Width="900px" GridLines="Both" BorderColor="#7F9DB9" FullRowMode="true" RunningMode="Client" GridLineColor="220, 223, 228" ColumnHeaderDividerImage="00050103" Font-Names="Tahoma" Font-Size="8.75pt" BorderWidth="1px" runat="server" FixedColumnCount="1" ColumnHeaderHeight="0" ItemHeight="35"> <FooterStyle CssText="padding-bottom:4px;padding-left:4px;padding-right:4px;padding-top:4px;"></FooterStyle> <ItemStyles> <eo:GridItemStyleSet> <CellStyle CssText="padding-left:8px;padding-top:2px;text-align:center;"></CellStyle> <FixedColumnCellStyle CssText="border-right: #d6d2c2 1px solid; padding-right: 10px; border-top: #faf9f4 1px solid; border-left: #faf9f4 1px solid; border-bottom: #d6d2c2 1px solid; background-color: #ebeadb; text-align: right"></FixedColumnCellStyle> </eo:GridItemStyleSet> </ItemStyles> <GoToBoxStyle CssText="BORDER-RIGHT: #7f9db9 1px solid; BORDER-TOP: #7f9db9 1px solid; BORDER-LEFT: #7f9db9 1px solid; WIDTH: 40px; BORDER-BOTTOM: #7f9db9 1px solid"></GoToBoxStyle> <ContentPaneStyle CssText="border-bottom-color:#7f9db9;border-bottom-style:solid;border-bottom-width:1px;border-left-color:#7f9db9;border-left-style:solid;border-left-width:1px;border-right-color:#7f9db9;border-right-style:solid;border-right-width:1px;border-top-color:#7f9db9;border-top-style:solid;border-top-width:1px;"></ContentPaneStyle> <Columns> </Columns> <ColumnHeaderStyle CssText="display:none;"></ColumnHeaderStyle> </eo:Grid> </div>
Codebehind:
//add column to dynamically created DataTable //create corresponding static column in grid
foreach (EventInfo eventInfo in events) { DataColumn column = new DataColumn(eventInfo.Id.ToString()); column.Caption = eventInfo.StartDate.ToShortDateString(); result.Columns.Add(column);
EO.Web.StaticColumn eventCol = new EO.Web.StaticColumn(); eventCol.DataField = eventInfo.Id.ToString(); eventCol.HeaderText = eventInfo.StartDate.ToShortDateString(); eoGridEventStaff.Columns.Add(eventCol); }
|
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
Hi Craig,
Please update to the latest version that's available on our download page.
Thanks
|
|
Rank: Newbie Groups: Member
Joined: 8/10/2009 Posts: 2
|
The same problem. My dll version is 7.0.53.2. Webgrid become invisible when scrolling to right in Firefox 3.6 and Opera 10.10. In previous versions of Firefox and other browsers works fine.
|
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
Hi Kucher,
We have confirmed this to be an issue and is working on it.
Thanks!
|
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
Hi,
We have posted a new build that should fix this issue for FireFox 3.6 and Opera 10.10. Please see your private message for the download location.
Thanks!
|
|