Hi,
I want to know when a selected row has been changed in an UltraDropDown. I've tried the RowSelected event but as soon as I click the dropdown without changing the selected row the event fires.
What's the best way to do this?
Thanks
Craig
(2009.2)
Hi Craig,
Why do you want to know when the selected row has changed? What's the goal here?
The event fires when you first drop down the list because the selected row is set in order to match the value of the cell from which it is dropping down.
Hi Mike,
The initial position in the list reflects the associated wingrid row's value.
To save a round-trip to the database I'd like to know when a different item in the list has been selected, rather than call an update that applies no changes.
Hello Craig,
I am just checking if you got this worked out or you still require any assistance or clarification on the matter.
If this is what you were looking for please verify the answer so it helps other users as well.
Sincerely,Petar MonovDeveloper Support EngineerInfragistics Bulgariawww.infragistics.com/support
Thanks for pointing this out Mike. I'll need to apply a different approach.
PS. Petar, we do get allowed out on vacation on occasion ;)
I've dealt with this by using the WinGrid's AfterCellUpdate event and compared cell.value with cell.originalvalue. Any comment?
Seems like a reasonable approach.