当i组默认为Telerik的radgridview
时列的名称和单元格的值类似于组的标题
{Column Title}: {Cell Value}
但我需要改变它只有{Cell Value}
有没有办法用C#做到这一点?
答案 0 :(得分:2)
如果您正在讨论从分组后的值中删除预先修复的列名称,则可以订阅GroupSummaryEvaluate
事件,然后覆盖默认格式。
例如,如果您的列名称为“Rotulo”和“Termino”,则会显示在您的示例中:
void radGridView_GroupSummaryEvaluate(object sender, Telerik.WinControls.UI.GroupSummaryEvaluationEventArgs e)
{
if ((e.SummaryItem.Name == "Rotulo") || (e.SummaryItem.Name == "Termino"))
{
e.FormatString = e.Value.ToString();
}
}