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''ve got a databoundgrid and a textbox right under it.
every time a enter a new record/update an existing record/delete an existing record in the databoundgrid, I need to append something to the text already in the textbox.
where do I put my code?
*sigh* this all seems so trivial
but I really can''t seem to find my way yet in .NET :(
ADAdministrator Syncfusion Team October 28, 2005 09:29 AM UTC
You can handle the grid.RowEnter event.
private void gridDataBoundGrid1_RowEnter(object sender, Syncfusion.Windows.Forms.Grid.GridRowEventArgs e)
{
//put the value in column 1 into the textbox
string s = this.gridDataBoundGrid1[e.RowIndex, 1].Text;
this.textBox1.Text = s;
}
Need More Help?
Get personalized assistance from our support team.