Hello All,
I am facing a problem, I basically have say 5 columns in ultra grid one of them (the very first one) is of type System.Boolean which shows a checkbox, I only want this checkbox to be checked when i specifically click on it but when i click anywhere on that particular row the checkbox automatically gets checked. Is there any property i am missing here?
Thanks for your reply guys. I am able to find out where the logic has explicitly being implemented to change the cell's state when the row is clicked. It was not an implicit behavior indeed. Thanks again.
Hi,
Are you saying that when you click on a different cell in the same row that the CheckBox is getting changed? There's nothing in the grid that would do that automatically - it must be something in your code.
My first guess would be that you are setting the value of the checkbox cell in the InitializeRow event. You may not be aware that this event fires a lot, not just the first time that the row is initialized. So if you are trying to initialize the value of the checkbox cell inside InitializeRow, be sure to check that e.ReInitialize is false.
This shouldn't happen. You might doing something somewhere else. Try to handle the CellChange event and look at the call stack.