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.
I''m having a problem with the columns in a child grid not all showing after I update a record. I''m hoping you can help me figure out what is causing this. I''ve submitted a direct trac incident #9490 but haven''t gotten a reply. The code is posted there as well. To reproduce this:
1. Drop down the first of two child grids where there are records (the last parent record is a good choice)
2. Make a change to the 2nd dropdown column or the 3rd column text
3. Move to a parent record where you know there are no records in that same child dropdown (I think the second row should work) and drop down the grid. You will notice that the first column is not displayed, only the second and third
THanks again - your a great help. Hopefully this will be my last question
ADAdministrator Syncfusion Team March 3, 2004 04:24 PM
In your sample that I have, th eproblem appears to be that the grid is actually scrolled to the left, only showing the right 2 columns.
I was able to avoid the problem by adding a line in your Sub phraseGrid1_CurrentCellShowingDropDown method.
I added the line below:
Me.correctionGrid3.DataSource = dv ''existing line ......
Me.correctionGrid3.CurrentCell.MoveTo(1, 1, GridSetCurrentCellOptions.ScrollInView) ''added ....
ADAdministrator Syncfusion Team March 3, 2004 05:39 PM