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
385
Is is possible to show the TemplateAddRow when in GroupBy mode?
posted

When I move a column header into the GroupBy box, the new Grouped Band does not have a TemplateAddRow.  I have tried to enable it with

Private Sub _Target_InitializeGroupByRow(ByVal sender As Object, ByVal e As Infragistics.Win.UltraWinGrid.InitializeGroupByRowEventArgs) Handles _Target.InitializeGroupByRow
  With e.Row.Band.Override
    If .AllowAddNew = AllowAddNew.Default Then
      .AllowAddNew = Infragistics.Win.UltraWinGrid.AllowAddNew.TemplateOnBottom
    End If
  End With
End Sub

But the row does not appear.  It does show in the non-Grouped bands.  Is there any way to get this row while Grouped?

Thanks
David Gauerke

Normally banded Grid