Hello
I have a GridViewCheckBoxColumn column added to a GridView that serves as a visual flag about the row's update status. I want to validate and update that checkbox' ToggleState while I am in the CellEndEdit of another column (that have a Spinner editor).
This gives me a Null value on the left side. (as well as many variants thereof)
Thanks
I have a GridViewCheckBoxColumn column added to a GridView that serves as a visual flag about the row's update status. I want to validate and update that checkbox' ToggleState while I am in the CellEndEdit of another column (that have a Spinner editor).
This gives me a Null value on the left side. (as well as many variants thereof)
if ((ToggleState)e.Row.Cells[
"RegleActive"
].Value == ToggleState.On)
Thanks