Hi,
I am using the ValueChanged event to detect changes in the grid that contains Checkboxes and I assign true to a variable which I use later to ask if it is true. But if with a second click I return to its previous value, the value has not really changed. How do I detect if something has really changed in the grid?
This is my code:
private void rgvPerfiles_ValueChanged(object sender, EventArgs e)
{
if (this.rgvPerfiles.ActiveEditor is RadCheckBoxEditor)
{
hayCambiosPendientes = true;
}
}
Best regards.