Indeed I could replicate the same problem on my end. It is first time reported. I am logging it as a bug in our tracking system and our developers will have the care to fix it. Your Telerik points are updated accordingly.
You can follow the PITS Issue by its ID: 12368
Here you can find the PITS Issue: Public URL
Kind regards,
Milena
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.
Has this problem been solved? I have the same problem with the date format string not working for Row header total (Telerik.web.ui version 2013.1.417.40). Have a look at the attached image.
Indeed I could replicate the same problem on my end. I am logging it as a bug in our tracking system and our developers will have the care to fix it. Meantime, you can use the following code as a possible workaround:
PivotGridRowHeaderCell headerCell = e.Cell as PivotGridRowHeaderCell;
if (headerCell != null && headerCell.IsTotalCell && headerCell.Field.DataField == "FieldName")
{
headerCell.Text = "Test";
}
}
Regards,
Milena
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.