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.
I haven't found a way to change anything but the textual description. Anything else would require changing the entire template of the grid. That's my understanding. So I've been stuck building concatenated strings. Nothing fancy.
Can you put a button in the header for groupbyrecord?