Hello,
I have an UltraGrid with 3 decimal columns. Let's say columns A, B and C.
I need to assure that B > A, this is, the value on the column B is always greater than the value on column A.
Does UltraGrid control support this kind of conditions?
If yes, how can I set them?
Thanks in advance.
Best Regards,
Pedro Rosas
Pedro,
There is not functionality built into the grid to accomplish this. You could, however, use the BeforeExitEditMode or BeforeCellUpdate events of the grid to ensure that the user has entered a valid value; the former event would likely be your best bet if you don't want to allow the user to leave the cell until a valid value is entered.
-Matt