Why is the ItemSelectedCallback for a scroll wheel not behaving as described in the API?
I have a scroll wheel containing a dynamically-created list of items that I would like to be able to traverse using swiping or dragging motions. When the desired item is in view, I want the user to be able to select it with a touch press, just like you would with a button.
According to the API documentation, the public function setItemSelectedCallback is supposed to be called when the selected item is clicked. The setAnimateToCallback is supposed to be called when the scroll wheel animates to a new item. I have set both of these up, but I get both callbacks every time the AnimatedTo item changes. In other words, I can swipe down on my list, and when the animation stops, I always get both callbacks, even though I did not click on any item. This seems like improper behavior.
How do I get a 'clicked-on' item? I do realize that the 'clicked-on' item will be animated to become the selected item. I just don't want to get the SelectedItemCallback from a swipe or a drag.
FYI, I have modified the Scroll Wheel in the ScrollList Example provided by TouchGFX Designer to test this.
