Hi,
I need to show a set of Checkboxes. The options (oj-option) should be dynamically retrieved from an ADP.
From the Jet cookbook, it looks I need to use the “options” property and bind it with an ADP.
Checkboxset | Data Provider Options | JET Developer Cookbook (oracle.com)
I tried creating an ADP with type array and gave below default value.
[
{ "value": "IE", "label": "Internet Explorer" },
{ "value": "FF", "label": "Firefox" }
]

Then, set the “Option” property to the ADP variable.

Checkbox set doesn't show anything. Plesae help!