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
475
UltraGrid not loading data rows, only columns
posted

I have a form with two tabs on it.  One tab's UltraGrid is loading its data properly.  The other tab, with a similar grid and code, is not loading its data.  The data source has data in it, and I can see it being set to the UltraDataRow, however, it just won't show any data rows.

UltraDataRow missionRow = af664DataSource.Rows[0];

// The data fields set here contain data

missionRow["To Date"] = fltRecAf664.MissionToDateTimeDt;
missionRow["Aircraft Organization Home Station"] = fltRecAf664.TranBaseNameNm;
missionRow["CMD"] = fltRecAf664.CmdCd;
missionRow["MDS"] = fltRecAf664.MdsCd;
missionRow["Serial Nbr"] = fltRecAf664.SerialNbr;

UltraGrid shows the columns, but no data rows (should be one row)

Is there a step I'm missing to have the data show up?  I'm using similar code as the tab that is working and can't tell the difference and why it won't work.

Top Replies

Parents Reply Children