Hi there!
I know I'm in the Grid forum, but couldn't find a specific forum for this control ...
I have one simple quesion:
Why does the ValueChanged event fire when I'm drilling back and forth in this control ?
My scenario is that I want to open a 2nd form the moment the user has picked a NEW date from the UltraDateTimeEditor, but this event also fires when the user is changing the calendar ( using the right and left buttons on the control ) ??? Why does that happen ...
I don't want to open the 2nd control when the user is drilling back and forward inside the control ?How can I detect that the user has actually picked some date ? I don't want the event to fire when the user is for e.g. scrolling between months ??
if
)
{
Infragistics.Win.UltraWinGrid.
selectedRow = _ugTab3ProjectSettings.Selected.Rows[0];
)_utTab3FinishDateCurrent.Value)
_needToLoadFinishChangesForm =
;
}
else
();
changes._projectIdBeingWorkedWith = (
].Value;
changes._projectNameBeingWorkedWith = (
changes._changeDateSelectedInHistoryControl = (
)_utTab3FinishDateCurrent.Value;
changes.ValueUpdated +=
(ChildForm_ValueUpdated);
_utTab3FinishDateCurrent.CloseUp();
changes.ShowDialog(
);
rgd,EE.
I moved the code to
_utTab3FinishDateCurrent_AfterCloseUp
I think that's the only solution
then I check if the selected value is that same as the "BeforeEnterEditMode" value was .... this works.rgd,EE.