Hi,
I am not able to get any of the touch events like "RotateGesture", "ZoomGesture" etc when the gesture is performed on a grid with check box cells.
Attached the sample project.
Try the rotate gesture by touching on columns 3, 4, 5 having check box cells. None of the events are fired.
My applications are having mostly grids with check box columns where I am trying to use touch events and provide zooming and other features. But I am not able to do so.
PLEASE HELP ME.
Thanks
Prasad
Hi Dimitar,
Thank you very much. This solves my purpose.
Regards,
Hello Prasad,
I am just checking about the progress of this issue. Let me know if you need my further assistance on this issue.
Thank you for using Infragistics Components.
Hi Prasad,
Thank you for posting in our forums.
For UIElements that we consider to be more likely to be tapped, such as buttons, splitters, and checkboxes, we default the Mode property of the event args for the GestureQueryStatus event to None, so that we don't interfere with the tap gesture for the element. This behavior can be overridden by handing GestureQueryStatus and adding the appropriate bit to the Mode property, like so:
e.Mode |= GestureModes.Zoom;
e.Mode |= GestureModes.Rotate;
I have modified your sample in order to demonstrate this.
Please let me know if you have any additional questions.