I want to change the default appearance of GroupByRecordPresenter, that by default says "xxxxxx (1 item)". I can't find an example of this. I can live with the appearance... I just want to change the content and eliminate the item count.
Does anyone know of a simple code example of this?
Thank you.
You can wire up the InitializeRecord event and set tge GroupByRecord's Description property, e.g.:
{
if (gbr.Value == null)
else
gbr.Description = gbr.Value.ToString();
}
This is a *little* simpler than copying and modifying the default template!
Thanks, Joe.