Hello, I have just recently purchased the suite and have a quick question about using a grid in a cell. Looking at the sample provided by Syncfusion, I want to update the information in the Grid in a Cell after it has been created.
The Problem I have is that the grid does not redraw until it gets focus. Whats the best way to do this or how can I get the Grid to redraw. Thanks!
private void button1_Click(object sender, System.EventArgs e)
{
GridControl blahgrid = (GridControl) gridControl1[8,2].Control;
blahgrid[1,1].Text ="blah blah blah4";
blahgrid.Focus();
}