Hello everyone,
I have a problem with my Ultragrid,
Well I have value list in the last column and I want that when I select some item of my value list inmediatly another cell value has to change (See the image). In wich event can I Handle this?
Thanks.
Thanks for your reply Mike, I will try with your suggestions.
Best regards
I would recommend using either the CellChange event of the CellListCloseUp event.
CellChange will fire every time a cell changes. So it fires on every keystroke and therefore, you might have to put in some checks to make sure the value in the cell is valid before you process it.
CelListCloseUp fires any time the list closes, regardless of whether the user actually changed anything. So if you use this event, you will probably want to check the current value of the cell against the old value and just make sure something actually changed.