In IE 7, when we set "usestaticheaders=true" in "ClientSettings>Scrolling" in a grid and if there is a row with a lengthy name, it will truncate the item in that row and it is adding 3 dot's "..." at the end. But In Firefox 3, it doesn't do that and it is overlapping with the text in the next column.
So how do we fix this in Firefox 3?
This is the grid we use:
<telerik:RadGrid ID="grdRadAssetHistory" runat="server" AllowPaging="False" AllowSorting="True"
AutoGenerateColumns="False" BorderWidth="1px" CellPadding="1" CellSpacing="1"
GridLines="None" GroupingEnabled="False" EnableEmbeddedSkins="false"
Skin="Web20" Style="margin-bottom: 0px" Width="650px"
MasterTableView-DataKeyNames="AssetId"
onneeddatasource="grdRadAssetHistory_NeedDataSource" CssClass="grid" >
<PagerStyle Mode="NextPrevAndNumeric" HorizontalAlign="Left" PagerTextFormat=""></PagerStyle>
<HeaderStyle HorizontalAlign="Left" />
<ItemStyle HorizontalAlign="Left" />
<AlternatingItemStyle HorizontalAlign="Left" />
<ClientSettings AllowColumnsReorder="True">
<Resizing AllowColumnResize="True" EnableRealTimeResize="True" ResizeGridOnColumnResize="True">
</Resizing>
<Scrolling AllowScroll="True" SaveScrollPosition="True" ScrollHeight="200px" UseStaticHeaders="true"></Scrolling>
</ClientSettings>
<MasterTableView AllowNaturalSort="false">
<NoRecordsTemplate>
No Records found
</NoRecordsTemplate>
<Columns>
<telerik:GridBoundColumn HeaderText="Changed By" DataField="LoginName" HeaderStyle-Width="130px">
</telerik:GridBoundColumn>
<telerik:GridBoundColumn HeaderText="Comment" DataField="Comments" HeaderStyle-Width="200px">
</telerik:GridBoundColumn>
<telerik:GridTemplateColumn HeaderText="Preview" HeaderStyle-Width="135px"
DataField="AssetId" >
<ItemTemplate>
<a target="_blank" href="API/AssetDeliveryHandler.ashx?assetId=<%# Eval("AssetId") %>" ><%# Eval("FileName") %></a>
</ItemTemplate>
</telerik:GridTemplateColumn>
<telerik:GridBoundColumn HeaderText="Change Date" DataField="CreateDate" DataType="System.DateTime"
DataFormatString="{0:yyyy-MM-dd HH:mm:ss}" HeaderStyle-Width="125px">
</telerik:GridBoundColumn>
</Columns>
</MasterTableView>
</telerik:RadGrid>
Early response is appreciated.