We have a grid in which we have some columns with textbox or checkbox controls.
In the radGrid.ItemCreated Event we add handlers for the "TextChanged" and "CheckChanged" events of these controls pointing to a custom written ItemChanged sub routine which processes the data changes.
A problem we've recently discovered is that if the client sorts multiple columns without waiting for the sort to complete these events appear to fire causing unintended data changes. The user hasn't actually changed the text or the checkbox, yet the event fires.
Can anyone advise why this might be happening? I'm happy to provide more specific information but I'm not really sure where to begin. It seems as though perhaps the controls on the page don't get disposed between sorts but their data is updated which perhaps is what causes the event to fire but really I have no idea.
Thanks!