Add a combo-box column that point to a field with Guid data type, add summary item to this columns as well.
Workaround:
private void RadGridView1_CreateRowInfo(object sender, GridViewCreateRowInfoEventArgs e)
{
if (e.RowInfo is GridViewSearchRowInfo)
{
e.RowInfo = new MySerachRow(e.ViewInfo);
}
}
class MySerachRow : GridViewSearchRowInfo
{
public MySerachRow(GridViewInfo viewInfo) : base(viewInfo)
{
}
public override string GetCellFormattedValue(GridViewRowInfo row, GridViewColumn column)
{
if (row is GridViewSummaryRowInfo)
{
return "";
}
return base.GetCellFormattedValue(row, column);
}
}