Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
275
UltraGrid Row click Issue
posted

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?

Parents
  • 469350
    Offline posted

    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.

Reply Children
No Data