DataList
The DataList component provides a list od items that can be used with other components client-side. For example, you can associate a DataList to an Edit to provide input suggestions on the latter.
Contents
Client-side Features
DOM Elements
The component generates the following client-side DOM elements:
- Wrapper (HTMLDataListElement). Medium browser support. Access it with
$("#ComponentName").get()[0]
.- Option1 (HTMLOptionElement). Medium browser support. Access it with:
$('option[value="ItemKey"]').get()[0]
. - …
- Option1 (HTMLOptionElement). Medium browser support. Access it with:
Client-side Events
- Documented in the RPCL Reference.
Server-side Features
Properties, Methods and Events
- Documented in the RPCL Reference.