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?

link|improve this question
If your gridview is databounded, then it would not be possible. Better would be use binding context to achieve it – Marshal Apr 4 '11 at 13:21
Have you solved this problem? Looks like I have similar one. – Alex Mar 27 at 15:12
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.