Checkbox Column does not trigger CellEndEdit Event

0
0

Good day,

 

I am trying to to datagridview editing, but found something unusual, my checkbox column is not firing the cellendedit event, other column types are fine. Maybe I need to set something?

Attached is a sample project showing the issue.

 

Thanks.

  • You must to post comments
0
0

Hi Glenn,

#2319 is fixed in Wisej release 2.1.77

Best regards
Frank

  • You must to post comments
0
0
  • You must to post comments
0
0

Thanks, it’s a bug or a regression. Will log.

Additionally, the CellBeginEdit and CellEndEdit events for a DataGridViewCheckBoxCell (or any cell without an editor) work differently in Wisej from WinForms:

  • In Winforms CellBeginEdit/CellEndEdit is fired every time the checkbox is entered or left regardless of the user having actually “edited” it.
  • In Winforms CellValidating on a checkbox cell is fired only when leaving the cell, in a textbox cell it’s fired everytime edit mode is terminated.
  • In Wisej CellBeginEdit for a checkbox cell is fired the first time the user tries to “edit” it by clicking the checkbox or using the space to toggle the checkbox.
  • In Wisej CellEndEdit for a checkbox cell is (should be) fired only if the user “edited” the checkbox cell and leaves it.
  • In Wisej CellValidating for a checkbox cell is fired every time it’s edited (toggled).

A a workaround you can use CellValueChanged.

  • You must to post comments
Showing 3 results
Your Answer

Please first to submit.