I have a problem with a DataGridView. I try using it in virutal mode, and if I fill the data in the getCellValue method, it works. However, I can not feed the data there - I dont (and cant) have a blocking getNextDataPage request to my model. I can only send a command (command pattern) which is then processed, and I am getting a notification some time later. In the notification method however, I am somehow not seen the value changes to the table cells... Is there any solution for that? I tried calling invalidateCell, update all table afterwards. My code:
private void getCellValue(object sender, DataGridViewCellValueEventArgs e)
{
if (!rowsRequested.Contains(e.RowIndex))
{
for (int i = 0; i<pageSize; i++)
{
rowsRequested.Add(e.RowIndex + i);
}
Command command = new GetModelDataCommand(model, e.RowIndex, pageSize, session);
IController control = Program.getController();
control.submitCommand(command);
}
}
UpdateNextPage is called on notification, invoked in a GUI thread.
private void updateNextPage(Model.NotificationState state)
{
IDictionary<long, Message> messages = model.getMessagePage(state.pageStart, state.pageSize);
foreach (long l in messages.Keys)
{
foreach (DataGridViewColumn c in messageDataGridView.Columns)
{
messageDataGridView.Rows[(int)messages[l].time].Cells[c.Name].Value = ""+messages[l].RawData[c.Name];
}
}
}
In debugger, I get the correct values set, but getting blank table cells, help anyone?