This is a migrated thread and some comments may be shown as answers.

Chrome Display Issue

7 Answers 84 Views
PivotGrid
This is a migrated thread and some comments may be shown as answers.
Ed
Top achievements
Rank 1
Ed asked on 08 Apr 2013, 04:31 PM
The grid displays differently in Chrome and IE. The issue is with Chrome. I have attached tow files illustrating the displays.

7 Answers, 1 is accepted

Sort by
0
Maria Ilieva
Telerik team
answered on 11 Apr 2013, 12:44 PM
Hello Ed,

Could you please send us the RadGrid markup as well as the related code behind or a live url where the issue could be seen. Thus we will be able to research further on the problem and advise you on its possible resolution.

Greetings,
Maria Ilieva
the Telerik team
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to their blog feed now.
0
Ed
Top achievements
Rank 1
answered on 11 Apr 2013, 12:55 PM
Grid markup:
<telerik:RadPivotGrid ID="ReportGrid" runat="server" DataSourceID="GridDataSource"
    AllowSorting="True" AllowFiltering="False" ShowFilterHeaderZone="False" ColumnHeaderCellStyle-CssClass="Center"
    AllowPaging="True" ShowColumnHeaderZone="False" ShowDataHeaderZone="False" AggregatesLevel="1"
    OnCellDataBound="ReportGrid_CellDataBound" UseQueryableDataProvider="True" PageSize="20">
    <PagerStyle AlwaysVisible="True" Position="Top" />
    <Fields>
        <telerik:PivotGridRowField UniqueName="MacId" DataField="MacId" CellStyle-Width="6em">
            <CellStyle Width="8em" />
        </telerik:PivotGridRowField>
        <telerik:PivotGridColumnField DataField="ReportDate" UniqueName="ReportDate" DataFormatString="{0:M/d/yyyy}"
            CellStyle-Width="8em" CellStyle-CssClass="Center">
            <CellStyle Width="8em"></CellStyle>
        </telerik:PivotGridColumnField>
        <telerik:PivotGridAggregateField DataField="BurnHours" UniqueName="BurnHours" Caption="Burn Hours"
            DataFormatString="{0:##0.000}" TotalFormatString="{0:#,##0.000}">
        </telerik:PivotGridAggregateField>
        <telerik:PivotGridAggregateField Caption="KWH" DataField="KWH" UniqueName="KWH" DataFormatString="{0:##0.000000}"
            TotalFormatString="{0:#,##0.000000}">
        </telerik:PivotGridAggregateField>
    </Fields>
    <ClientSettings>
        <Scrolling AllowVerticalScroll="True" ScrollHeight="384px" />
    </ClientSettings>
    <ConfigurationPanelSettings Position="FieldsWindow"></ConfigurationPanelSettings>
    <ColumnHeaderCellStyle CssClass="Center" />
    <RowTotalCellStyle CssClass="Right" Width="10em" />
    <ColumnTotalCellStyle CssClass="Right" />
    <DataCellStyle CssClass="Right" />
    <RowGrandTotalCellStyle CssClass="Right" Width="10em" />
    <ColumnGrandTotalCellStyle CssClass="Right" />
</telerik:RadPivotGrid>

In the code-behind, the only code that would alter the display is:
protected void ReportGrid_CellDataBound ( object sender, PivotGridCellDataBoundEventArgs e )
        {
            if ( e.Cell is PivotGridColumnHeaderCell )
            {
                PivotGridColumnHeaderCell HeaderCell = e.Cell as PivotGridColumnHeaderCell;
 
                switch ( HeaderCell.IsGrandTotalCell )
                {
                    case true:
                        HeaderCell.Text = HeaderCell.Text.Contains ( "KWH" ) ? "Total KWH" : "Total Hours";
                        break;
 
                    case false:
                        if ( HeaderCell.Field.DataField != "ReportDate" )
                        {
                            HeaderCell.Text = HeaderCell.Text.Contains ( "KWH" ) ? "KWH" : "Hours";
                        }
 
                        break;
                }
            }
        }

I do not have a live site that you could visit. However, I could set-up a session in which you could see the results in action.

Thank you for your efforts.
0
Maria Ilieva
Telerik team
answered on 16 Apr 2013, 01:33 PM
Hello Ed,

We were able to replicate the issue on our end and it appears that this is a bug in the RadPivotGrid we are already aware of. It is logged in our tracking system and our dev team ensures me that they will do their best to fix the problem in the next official Q2 2013 release, which is scheduled for the middle of June.

Excuse us for any inconvenience this issue may lead.

Regards,
Maria Ilieva
the Telerik team
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to their blog feed now.
0
Ed
Top achievements
Rank 1
answered on 20 Jun 2013, 01:09 PM
I have installed the 2013 Q2 release and the issue persists.
0
Maria Ilieva
Telerik team
answered on 25 Jun 2013, 12:21 PM
Hello Ed,

Due to the overloaded planing for the past release our front-edn dev team was not able to fix the issue as initially was discussed. I'm now increasing this issue priority and they will do their best to provide a fix as soon as possible.



Regards,
Maria Ilieva
Telerik
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to the blog feed now.
0
Ed
Top achievements
Rank 1
answered on 12 Nov 2013, 11:49 AM
Has there been any progress towards the correction of this?
0
Maria Ilieva
Telerik team
answered on 15 Nov 2013, 09:25 AM
Hello Ed,

This is to let you know that the mentioned bug is fixed in the latest Q3 2013 SP1 release. Give it a try and verify if it works for you.

Regards,
Maria Ilieva
Telerik
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to the blog feed now.
Tags
PivotGrid
Asked by
Ed
Top achievements
Rank 1
Answers by
Maria Ilieva
Telerik team
Ed
Top achievements
Rank 1
Ed
Top achievements
Rank 1
Share this question
or