if multiple columns can be set to be gruop by columns, why can't we have a different GroupByRowDescriptionMaskDefault for each group by column?
i want to be able to show different things in that mask for each gruop i am creating, is it possible?
rbuch said:i want to be able to show different things in that mask for each gruop i am creating, is it possible?
yeah i tried that following another post on here, but my RowEventArgs.Row does not have a "Description" property.
i am using grid version 8.2.20082.2160
void PositionsGrid_InitializeGroupByRow(object sender, RowEventArgs e) {
e.Row.Descritpion // this property doesn't exist
}
Hi,
rbuch said:void PositionsGrid_InitializeGroupByRow(object sender, RowEventArgs e)
Not sure how you hooked up this event, but the reason you cannot find the Description property is that your event signature is wrong.
It should be:
private void ultraGrid1_InitializeGroupByRow(object sender, InitializeGroupByRowEventArgs e)
Oh... also, it's not a bad idea for us to add a GroupByRowDescriptionMask to the column. Please feel free to Submit a feature request to Infragistics and perhaps this can be added to the grid in a future release.