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
3790
help with touch.
posted

I'm now moving the project to portable devices. First up android 4.x...

My first issue is that I dont know how to select cells on a grid? Its kinda sloppy and random. How do you make a selection with touch? I have these

                    mouseDragSelect: true, // default value for selecting multiple cells with the mouse
                    touchDragSelect: true, // default value for selecting multiple cells with a finger

Also not infragistic related but maybe someone can help. I use jquery ui to move windows. This does not work on a tablet or phone?

Parents
  • 5513
    Suggested Answer
    Offline posted

    Hello seang,

    Could you please try to specify what the issue with Selecting on touch is? I've just tried it with the sample http://ko.infragistics.com/products/jquery/sample/grid/multiple-cell-selection and it felt accurate.

    mouseDragSelect and touchDragSelect are only available with cell selection. If you leave touchDragSelect enabled you'd be able to select multiple cells with a touch and drag gesture starting from an already selected cell. This, however, requires the touch events module from jQuery mobile (if you are unable to reference the whole library due to compatibility issues). Without the library, you could still enable multipleCellSelectOnClick to emulate holding down CTRL while selecting. You'll probably need separate UI to let the end user enable/disable it.

    You should also reference Modernizr in your touch-friendly page because our controls rely on its touch device detection to enable touch-specific functionality.

    Best regards,

    Stamen Stoychev

Reply Children