Out of the blue the grid no longer binds correctly. Here is sample code:
With Grid
.BeginInit()
.DataSource = dt
.EndInit()
End With
This code has worked fine for a while. Now all of the sudden my grid shows 0 datarows, however, if I set a breakpoint right after end init I see the datatable (dt) has rows, but the xceed grid datarows is empty.
What is even more strange is that I put a regular DataGridView on the form and bound to that right before the BeginInit of the xceed grid binding and for some reason that makes it work. I have no clue why binding to something else before binding to the xceed grid would make a difference but it does.
Any suggestions would be great.