diff options
author | Teemu Suo-Anttila <tsuoanttila@users.noreply.github.com> | 2017-05-16 21:25:04 +0300 |
---|---|---|
committer | Pekka Hyvönen <pekka@vaadin.com> | 2017-05-16 21:25:04 +0300 |
commit | 9b725e2bd7f747ee5ddcef17e61233ad575ae999 (patch) | |
tree | 053582100aab2b5aa76e0dca662a4e16fc7894e0 /documentation/advanced/advanced-dragndrop.asciidoc | |
parent | 46422df01b69f1b6a8c2780257a6968a6a5cd9df (diff) | |
download | vaadin-framework-9b725e2bd7f747ee5ddcef17e61233ad575ae999.tar.gz vaadin-framework-9b725e2bd7f747ee5ddcef17e61233ad575ae999.zip |
Add mention of context menu and DnD collision on mobile devices (#9337)
* Add mention of context menu and DnD collision on mobile devices
Diffstat (limited to 'documentation/advanced/advanced-dragndrop.asciidoc')
-rw-r--r-- | documentation/advanced/advanced-dragndrop.asciidoc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/documentation/advanced/advanced-dragndrop.asciidoc b/documentation/advanced/advanced-dragndrop.asciidoc index 4a4499b81f..d7ef80ac33 100644 --- a/documentation/advanced/advanced-dragndrop.asciidoc +++ b/documentation/advanced/advanced-dragndrop.asciidoc @@ -181,7 +181,9 @@ compatible browser, such as Mozilla Firefox 3.6 or newer. The HTML 5 Drag and Drop API is not yet supported by mobile browsers. To enable HTML5 DnD support on mobile devices, we have included an link:https://github.com/timruffles/ios-html5-drag-drop-shim/tree/rewrite:[external Polyfill]. Please note that this Polyfill is under the BSD 2 License. -By default, the mobile DnD support is disabled, but you can enable it any time for a [classname]#UI#. Starting from the request where the support was enabled, all the added [classname]#DragSourceExtension#, [classname]#DropTargetExtension# and their subclasses will also work on mobile devices for that UI. The Polyfill is only loaded when the user is using a touch device. +By default, the mobile DnD support is disabled, but you can enable it any time for a [classname]#UI#. Starting from the request where the support was enabled, all the added [classname]#DragSourceExtension#, [classname]#DropTargetExtension# and their subclasses will also work on mobile devices for that UI. The Polyfill is only loaded when the user is using a touch device. + +Drag and Drop is mutually exclusive with context click on mobile devices. [source, java] ---- |