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
60
UltraGrid not support add new row after group by
posted

 sir!

UltraGrid does not support add new row after group by..Please tel me the solution, how to add new row in group by case without changing its viewbandStyle

Thanx

 

Parents
  • 37774
    posted

    The grid should support this behavior, though it is possible that your DataSource is preventing it.  What's also possible is that since the grid does not automatically re-group the grid when the contents are updated, in order to prevent confusing the user, you could try calling (with whichever band is appropriate):

    this.ultraGrid1.DisplayLayout.Bands[0].SortedColumns.RefreshSort(true);

    -Matt

Reply Children