Datagrid Append/Addnew Record???

  • Thread starter Thread starter Darryn Ross
  • Start date Start date
D

Darryn Ross

Hi

How do i update my dataset as soon as i start entering a record into the
append/addnew line of a datagrid, instead of it being updated when i go to
the next line to add another record?

Regards

Darryn
 
Hi,

trap the grid's ItemCreated event to fire off the dataset update.

Regards
Joyjit
 
Hi,

It's not for a web application, it's for a windows application in C# and the
Datagrid doesn't have that event under a windows app

any other ideas?

Regards

Darryn
 
Hi,

Add handler in the CurrentCellChanged event to start ur update whenever the
CurrentCell property changes.

Regards
Joyjit
 
Back
Top