Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
1300
Touch events not getting fired when there are check box cells in the grid.
posted

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

TestTouchFeatures.zip
  • 23930
    Offline posted

    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.

  • 23930
    Offline posted

    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.

    TestTouchFeaturesMod.zip