How do convince a DataGridView it's been edited?

D

DanThMan

The situation:

* I have a ButtonColumn in a DataGridView.
* When the user preses one of the buttons, a dialog appears.
* Based on what the user selects in the dialog, data is entered
programmatically into the the underlying cell (i.e., I'm setting Value
property of the cell based on user input, but the user is not directly
entering any data).

The problem:

The DataGridView doesn't seem believe the user has edited the row, so
if the user clicks or tabs somewhere else (which causes the
DataGridView to lose focus), all the changes to the row get
cleared/canceled.

Other information:

Looking at the RowHeaderCell for the row as it's being edited, it
changes from a large asterisk [*] to a right arrow + asterisk [>*].
This is different than if the user directly edits a cell by typing (in
that case, you'd get a pencil icon while the cell is in edit mode
followed by a large right arrow after the change is committed).

My question:

So, how do I programmatically tell the DataGridView that the user
really has touched/edited this row and that the data should stick even
if the DataGridView loses focus.

Thanks!

-Dan
 
G

Guest

If the grid is bound, edit the underlying data source. I dont ever add rows
and columns to a grid with out binding it. I make a DataTable first and let
that be the container for the data. Then I can bind the grid to it and update
the DataTable when needs be.
 
C

ClayB

One other comment in addition to what Ciaran suggested is that the row
with the * next to it is the AddNew row so it really does not exist in
your DataSource. So, if you want to use Ciaran's suggestion of
interacting directly with the DataSource, then you would have to
actually add a new item (DataRow) in some manner, maybe calling
DataTable.NewRow, change the values in this new row, and then call
DataTable.Rows.Add to add the new row into the DataTable.

If you are only changing a single value in this new row, and want to do
it through the UI (and not directly work with the DataTable), then you
can try using SendKeys to simiulate keystrokes into the grid to set a
value, but there may be consequences of doing it this way. Manipulating
the data in the DataSource is probably the most robust way to do this.

//set the current cell and set it editing
this.dataGridView1.CurrentCell = this.dataGridView1[2, 10];
this.dataGridView1.BeginEdit(true);
//send the keystrokes and end the editing
SendKeys.Send(SomeValue.ToString());
this.dataGridView1.EndEdit();

=========================
Clay Burch
Syncfusion, Inc.
 
D

DanThMan

Thanks to both of you for your replies.

The problem is that I'm not creating a new row programmatically then
filling it with values. Rather, the user is interacting with the "row
for new records" and I'm programmatically entering values into that row
based on what the user does.

If I were just trying to add a new record entirely through code, I
could easily see how this would be done using the underlying DataTable.
But, in this case, if I were to add a new row to the DataTable when the
user interacts with row for new records, It seems like I'd just end up
with two unsync'd versions of the same row.

I like the SendKeys idea, but it only works for tables where there is a
visible DataGridViewTextBoxCell available to send input to. Sending
keys to a DataGridViewButtonCell, for example, doesn't trick the
DataGridView into thinking the row has been edited.

Is there really no way to simply set the status of a row to
edited/changed?

There seems to be a way to set the DirtyState of a cell to True
(NotifyCurrentCellDirty), but this still isn't enough to prevent the
problem of all values disappearing when the row loses focus. I also
can't seem to programmatically change the CurrentCell to any other type
of cell besides a DataGridViewTextBoxCell.

Right now, the only solution I can think of is to create a dummy
DataGridViewTextBoxColumn in a every table just so that I can use
SendKeys with it. Someone please tell me I don't have to resort to
something that kludgey!

Thanks again,

-Dan
 
R

RobinS

Why can't you create a new row for your datatable, and put the user's
entries into it, then add it to the DataGridView?

What are you binding your datagridview to? Is it by chance a list of
objects? Or is it a datatable or dataset?

Robin S.
---------------------------------
DanThMan said:
Thanks to both of you for your replies.

The problem is that I'm not creating a new row programmatically then
filling it with values. Rather, the user is interacting with the "row
for new records" and I'm programmatically entering values into that
row
based on what the user does.

If I were just trying to add a new record entirely through code, I
could easily see how this would be done using the underlying
DataTable.
But, in this case, if I were to add a new row to the DataTable when
the
user interacts with row for new records, It seems like I'd just end up
with two unsync'd versions of the same row.

I like the SendKeys idea, but it only works for tables where there is
a
visible DataGridViewTextBoxCell available to send input to. Sending
keys to a DataGridViewButtonCell, for example, doesn't trick the
DataGridView into thinking the row has been edited.

Is there really no way to simply set the status of a row to
edited/changed?

There seems to be a way to set the DirtyState of a cell to True
(NotifyCurrentCellDirty), but this still isn't enough to prevent the
problem of all values disappearing when the row loses focus. I also
can't seem to programmatically change the CurrentCell to any other
type
of cell besides a DataGridViewTextBoxCell.

Right now, the only solution I can think of is to create a dummy
DataGridViewTextBoxColumn in a every table just so that I can use
SendKeys with it. Someone please tell me I don't have to resort to
something that kludgey!

Thanks again,

-Dan

One other comment in addition to what Ciaran suggested is that the
row
with the * next to it is the AddNew row so it really does not exist
in
your DataSource. So, if you want to use Ciaran's suggestion of
interacting directly with the DataSource, then you would have to
actually add a new item (DataRow) in some manner, maybe calling
DataTable.NewRow, change the values in this new row, and then call
DataTable.Rows.Add to add the new row into the DataTable.

If you are only changing a single value in this new row, and want to
do
it through the UI (and not directly work with the DataTable), then
you
can try using SendKeys to simiulate keystrokes into the grid to set a
value, but there may be consequences of doing it this way.
Manipulating
the data in the DataSource is probably the most robust way to do
this.

//set the current cell and set it editing
this.dataGridView1.CurrentCell = this.dataGridView1[2,
10];
this.dataGridView1.BeginEdit(true);
//send the keystrokes and end the editing
SendKeys.Send(SomeValue.ToString());
this.dataGridView1.EndEdit();

=========================
Clay Burch
Syncfusion, Inc.
 
D

DanThMan

It looks like the solution was to place the following code in the
DataGridView'sRowLeave event handler:

'make sure row is not empty
'binding = reference to the binding for the DataGridView
binding.SuspendBinding()
binding.ResumeBinding()

I'd feel better about this if I knew why it worked. I just sort of
stumbled upon it after playing with several different solutions,
including using SendKeys and adding a row to the DataTable.

Thanks for all the advice,

-Dan

Why can't you create a new row for your datatable, and put the user's
entries into it, then add it to the DataGridView?

What are you binding your datagridview to? Is it by chance a list of
objects? Or is it a datatable or dataset?

Robin S.
---------------------------------"DanThMan said:
Thanks to both of you for your replies.
The problem is that I'm not creating a new row programmatically then
filling it with values. Rather, the user is interacting with the "row
for new records" and I'm programmatically entering values into that
row
based on what the user does.
If I were just trying to add a new record entirely through code, I
could easily see how this would be done using the underlying
DataTable.
But, in this case, if I were to add a new row to the DataTable when
the
user interacts with row for new records, It seems like I'd just end up
with two unsync'd versions of the same row.
I like the SendKeys idea, but it only works for tables where there is
a
visible DataGridViewTextBoxCell available to send input to. Sending
keys to a DataGridViewButtonCell, for example, doesn't trick the
DataGridView into thinking the row has been edited.
Is there really no way to simply set the status of a row to
edited/changed?
There seems to be a way to set the DirtyState of a cell to True
(NotifyCurrentCellDirty), but this still isn't enough to prevent the
problem of all values disappearing when the row loses focus. I also
can't seem to programmatically change the CurrentCell to any other
type
of cell besides a DataGridViewTextBoxCell.
Right now, the only solution I can think of is to create a dummy
DataGridViewTextBoxColumn in a every table just so that I can use
SendKeys with it. Someone please tell me I don't have to resort to
something that kludgey!
Thanks again,

One other comment in addition to what Ciaran suggested is that the
row
with the * next to it is the AddNew row so it really does not exist
in
your DataSource. So, if you want to use Ciaran's suggestion of
interacting directly with the DataSource, then you would have to
actually add a new item (DataRow) in some manner, maybe calling
DataTable.NewRow, change the values in this new row, and then call
DataTable.Rows.Add to add the new row into the DataTable.
If you are only changing a single value in this new row, and want to
do
it through the UI (and not directly work with the DataTable), then
you
can try using SendKeys to simiulate keystrokes into the grid to set a
value, but there may be consequences of doing it this way.
Manipulating
the data in the DataSource is probably the most robust way to do
this.
//set the current cell and set it editing
this.dataGridView1.CurrentCell = this.dataGridView1[2,
10];
this.dataGridView1.BeginEdit(true);
//send the keystrokes and end the editing
SendKeys.Send(SomeValue.ToString());
this.dataGridView1.EndEdit();
=========================
Clay Burch
Syncfusion, Inc.
 
W

William LaMartin

I have found that if I want to be sure that changes to a cell in a
datagridview are made that I need to click on any other row before doing the
update command for the dataadapter.

I am sure there is another way.


DanThMan said:
It looks like the solution was to place the following code in the
DataGridView'sRowLeave event handler:

'make sure row is not empty
'binding = reference to the binding for the DataGridView
binding.SuspendBinding()
binding.ResumeBinding()

I'd feel better about this if I knew why it worked. I just sort of
stumbled upon it after playing with several different solutions,
including using SendKeys and adding a row to the DataTable.

Thanks for all the advice,

-Dan

Why can't you create a new row for your datatable, and put the user's
entries into it, then add it to the DataGridView?

What are you binding your datagridview to? Is it by chance a list of
objects? Or is it a datatable or dataset?

Robin S.
Thanks to both of you for your replies.
The problem is that I'm not creating a new row programmatically then
filling it with values. Rather, the user is interacting with the "row
for new records" and I'm programmatically entering values into that
row
based on what the user does.
If I were just trying to add a new record entirely through code, I
could easily see how this would be done using the underlying
DataTable.
But, in this case, if I were to add a new row to the DataTable when
the
user interacts with row for new records, It seems like I'd just end up
with two unsync'd versions of the same row.
I like the SendKeys idea, but it only works for tables where there is
a
visible DataGridViewTextBoxCell available to send input to. Sending
keys to a DataGridViewButtonCell, for example, doesn't trick the
DataGridView into thinking the row has been edited.
Is there really no way to simply set the status of a row to
edited/changed?
There seems to be a way to set the DirtyState of a cell to True
(NotifyCurrentCellDirty), but this still isn't enough to prevent the
problem of all values disappearing when the row loses focus. I also
can't seem to programmatically change the CurrentCell to any other
type
of cell besides a DataGridViewTextBoxCell.
Right now, the only solution I can think of is to create a dummy
DataGridViewTextBoxColumn in a every table just so that I can use
SendKeys with it. Someone please tell me I don't have to resort to
something that kludgey!
Thanks again,

One other comment in addition to what Ciaran suggested is that the
row
with the * next to it is the AddNew row so it really does not exist
in
your DataSource. So, if you want to use Ciaran's suggestion of
interacting directly with the DataSource, then you would have to
actually add a new item (DataRow) in some manner, maybe calling
DataTable.NewRow, change the values in this new row, and then call
DataTable.Rows.Add to add the new row into the DataTable.
If you are only changing a single value in this new row, and want to
do
it through the UI (and not directly work with the DataTable), then
you
can try using SendKeys to simiulate keystrokes into the grid to set a
value, but there may be consequences of doing it this way.
Manipulating
the data in the DataSource is probably the most robust way to do
this.
//set the current cell and set it editing
this.dataGridView1.CurrentCell = this.dataGridView1[2,
10];
this.dataGridView1.BeginEdit(true);
//send the keystrokes and end the editing
SendKeys.Send(SomeValue.ToString());
this.dataGridView1.EndEdit();
=========================
Clay Burch
Syncfusion, Inc.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top