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,
My application includes a DataBoundGrid having 5 columns (3 in display + 2 hidden). To add new row, User has to click into first column (or cell) of new row and then go to the search panel to select the value to be filled in that cell. Filling of this cell is being done in a method which populates that cell in following steps.
2)Get Currency Manager
3)Get current row by Casting CurrencyManager.current to DataRowView.
4)Update this row with value received from search panel so that grid will reflect that value to User.
But CurrencyManager.Current never returns new row which is being added.
I tried to get count of CurrencyManager.List which comes out as count of existing rows in datasource as well as Grid.
Can u please suggest a way of getting a reference to new row being added but not been added completely.
ADAdministrator Syncfusion Team July 20, 2004 05:19 AM UTC
The grid does not add the row to the datasource until after the user leaves the row.
One way around this problem is to add the row yourself in the the grid''s RowEnter event.
Another way is to use the IBindingList.ListChanged event to catch the adding of the new row, and do your work at that point.
Here is a forum thread that has code snippets for both techniques. Maybe one of this techniques will let you do what you need.
http://www.syncfusion.com/Support/Forums/message.aspx?MessageID=16352