Browse by Tags
All Tags » EndEdit (RSS)
-
Hi,
I'm currently using version 2.0 of the DataGrid.
Is there a way to capture something like the EditEnded event (which is new to version 3.0), in order to launch an action after a cell edition ?
Thanks a lot.
-
Hi,
I am having the same issue. Could you please post the solution.
-Siva
-
Clicking off a DataRow or DataCell loses data!
On your grid, if a DataCell is in EditMode, navigating with the keyboard (tabbing or arrow keys etc.) to a different DataCell or DataRow works perfectly. The value you have just typed in is saved back to the data (I guess EndEdit is called) and the new DataCell or DataRow becomes ...
-
Hi,
I am using Xceed Datagrids for WPF 2.0 in my application and I have also provided support for in-line editing of data grids. Please find below the details for the problem that I am facing currently.
Consider there are 3 columns in a grid - ID, FromRegion and ToRegion. All 3 are editable and editor is a ...
-
Is there any way to access the uncommited data in a row (besides the current cell) before EndEdit is called? I've struggled all day an cannot find anything obvious. The reason I need this is so that I can appliy certain logic to subsequent cells within the same row.
-
My current solution:
Get the InsertionRow from the Loaded-event:
private InsertionRow m_InsertionRow;private void InsertionRowLoaded(object sender, RoutedEventArgs args){ m_InsertionRow = sender as CustomInsertionRow;}
Call EndEdit separately on the InsertionRow:
...
-
Hi,
Why am I unable to override EndEdit on a DataCell, when this works fine on a DataRow? I want to do this:
public event EventHandler EndingEdit; public override void EndEdit() { ...
-
Hi Jenny,
thanks for your answer :-)
I don't think that overriding EndEdit will solve this issue. You would have to keep track of the last pressed Key and if Key != Enter: do nothing? I'll wait for the upcoming release. Do you know when that will be issued?
Cheers,
Frances
|
|
|
|