The Syncfusion® native Blazor components library offers 70+ UI and Data Viz web controls that are responsive and lightweight for building modern web apps.
.NET PDF framework is a high-performance and comprehensive library used to create, read, merge, split, secure, edit, view, and review PDF files in C#/VB.NET.
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();
}
Never mind. It seems you have to .Refresh(); the main grid instead of the grid inside of the cell. Didn''t seem to make sence becuase the internal grid would only update after clicking on it, not the main grid.