Hello
I’m working on a fairly large scale project where I am making controls for my charts which allow data to be selected by date ranges, along with previous and next pages, zooming, etc.
The problem is, that the event system has no way of conveying the source of the event, which I need for my application.
For example, I have code which changes the dates in a datetimeinput (on a page change or zoom for example). I don’t want these changes to fire the change/valuechanged, etc events. I only want these events to fire if the change is driven by a direct change to the widget by the user (and not when the setDate method is used).
Is there any way to tell whether the fired event is from actual user interaction with the widget vs. a change that was made programatically?
thanks