True 9Rays newbie here. Just downloaded and installed the Grid, and am having some troubles getting run-time databinding to work.
Here's the code I'm using:
dsCashFlow = cashflow.GetCashFlowList(investmentID) //returns a dataset
DataView dv = dsCashFlow.Tables[0].DefaultView;
dgFlyGrid.Rows.DataSource = dv;
There is no error message, but no rows/columns are displaying. Via debug I can see that the DataView is being populated, and that the DataGrid recognizes the data (dgFlyGrid.Rows.DataSource.Count is returning the correct number of rows).
Probably something simple, but just cant seem to figure it out.