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.
Clay,
No problem while inserting a row at end.
but my requirement is something diffeernt. I would like to add record in between.
Example.
I have databoundgrid with 10record
Click on ''Add Record'' button it should add the record. I have seen many sample where record will always be inserted at the end. But my reqiremnt is i need to insert record in between.
I am using DataTable
Here is the snipet.
frmInsertRows insertRow = new frmInsertRows();
if (insertRow.ShowDialog() == DialogResult.OK)
{
int curPos = this.dbgrdSummaryMaster.Binder.CurrentPosition + 1;
int numRows = 10;
bool valueExist=false;
//Check for every column in the Column
for (int colCount=0;colCount
ADAdministrator Syncfusion Team July 6, 2004 07:30 AM UTC
You have to to more more to get the inserts to function well. There is a sample in this thread.
http://www.syncfusion.com/Support/Forums/message.aspx?MessageID=16001
SASatishJuly 6, 2004 08:25 AM UTC
Clay,
I have tried this code. Not working.
My problem is I am able to insert a record in between the grid but when i start typing and click on Enter. The text whatever I enterd in that cell will go last row. why is it??
Thanks
Satish
>You have to to more more to get the inserts to function well. There is a sample in this thread.
>http://www.syncfusion.com/Support/Forums/message.aspx?MessageID=16001
ADAdministrator Syncfusion Team July 6, 2004 08:46 AM UTC
The sample in that thread allows you to insert a new row. It has a RowEnter event handler that is not in the code you listed. Did you add a RowEnter event like the one in the thread?
Can you post the sample using the suggested forum thread code not working?