AxSelector type
Selector is a UI element for selecting Adaptix data.
SelectorFile
The selector_file
element contains a file path input field and a button to invoke a file selection dialog. If the selector_file
is placed in a container
, the file contents will be base64 encoded when generating the JSON.

element create_selector_file()
- Constructs a selector_file
element contains a file path input field and a button to invoke a file selection dialog.
Methods:
SelectorCredentials
The selector_credentials
is a dialog window with the Credentials Manager table and a search field. The columns that the table should have can be specified when creating selector_credentials
.

dialog create_selector_credentials(string headers)
- Creates a selector_credentials
dialog with the specified headers
. Possible columns are: username, password, realm, type, tag, date, storage, agent_id, host.
Methods:
exec
map(string,any)[] create_selector_credentials::exec();
Shows the dialog as a modal dialog, blocking until the user closes it. If the window is closed by pressing the Choose button, the method will return an array of CRED structures. If the window is closed otherwise, an empty array will be returned.
// CRED STRUCTURE:
string cred["username"]
string cred["password"]
string cred["realm"]
string cred["type"]
string cred["tag"]
string cred["date"]
string cred["storage"]
string cred["agent_id"]
string cred["host"]
string cred["id"]
Last updated