NOSWIPE attribute

The NOSWIPE attribute denies swipe gestures on the element.

Syntax

NOSWIPE

Usage

The NOSWIPE attribute disables swipe gestures on touchscreens, for the element where the attribute is used.

This attribute can be used for:
  • HBOX and VBOX using the SPLIT attribute, to disable swipe gestures and force a given child element to remain on the screen.
  • FOLDER containers, to disable the swipe gesture when folder page content also allows swipe gestures (a web component with a map for example), or when using nested folders.

Example

HBOX hb1 ( SPLIT, NOSWIPE )
GRID grid1
...
TABLE table1
...
END