Hello,
I am trying to hide some rows in a WinCombo based on the value in a specific cell. Those rows will become visible under certain conditions, so it would be great if I could hide them when binding the WinCombo to my datasource. Could anyone please tell me, what is the best way to do so?
Thanks,Stefan
I found a solution that works fine for me. I set those rows to hidden in the InitializeRow-Event:
Private Sub uddlAbteilung_InitializeRow(ByVal sender As Object, ByVal e As Infragistics.Win.UltraWinGrid.InitializeRowEventArgs) Handles uddlAbteilung.InitializeRow If e.Row.Cells("EinzelEingang").Value = False Then e.Row.Hidden = True End If End Sub