Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
1220
why isn't GroupByRowDescriptionMaskDefault a column property?
posted

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 group i am creating, is it possible?

  • 1220
    posted

    the event i hooked up is created by visual studio. it automatically creates the handler implementation  after pressing += <tab>. 

    when i try to force it to your event signature above:

    PositionsGrid.InitializeGroupByRow += new InitializeGroupByRowEventHandler(PositionsGrid_InitializeGroupByRow);

    void PositionsGrid_InitializeGroupByRow(object sender, InitializeGroupByRowEventArgs e) {}

    i get the following compiler error:

    Error 69 No overload for 'PositionsGrid_InitializeGroupByRow' matches delegate 'Infragistics.WebUI.UltraWebGrid.InitializeGroupByRowEventHandler'

    also InitializeGroupByRowEventArgs is just not recognized by visual studio.