HI,
What is the best practice for edit the checkbox with mouse click ?
I use this feature and it works well, but when you click on the cell status changes. I wonder if the status changes only when you click on the little square of the cell.
.style = ColumnStyle.Checkbox
.FilterOperandStyle = FilterOperandStyle.Combo
.CellActivation = Activation.allowedit
.cellclickaction = CellClickAction.EditAndSelectText
Private Sub grid_CellChange(sender As Object, e As Infragistics.Win.UltraWinGrid.CellVentArgs) Handles grid.CellChange
if grid.activecell.column.datatype.name = "Boolean" Then
grid.performaction(UltraGridAction.ExitEditMode)
End if
End Sub
Francois.
Hello ,
Thank you for your feedback. I am glad that I was able to assist you here.
If you have any other questions please do not hesitate to ask
Thank you.
You could handle CellClick event in order to get the current state of the editor and then to use CellChnage event in order mange the state of the editor. Please see attached sample and let me know if this is what you are looking for.
Please let me know if you have any further questions