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:
SelectorAgents
The selector_agents is a dialog window with the Sessions table and a search field. The columns that the table should have can be specified when creating selector_agents.

dialog create_selector_agents(string headers) - Creates a selector_agents dialog with the specified headers. Possible columns are: id, type, listener, external_ip, internal_ip, domain, computer, username, process, pid, tid, os, tags.
Methods:
exec
map(string,any)[] create_selector_agents::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 AGENT structures. If the window is closed otherwise, an empty array will be returned.
// AGENT STRUCTURE:
string agent["id"]
string agent["type"]
string agent["listener"]
string agent["external_ip"]
string agent["internal_ip"]
string agent["domain"]
string agent["computer"]
string agent["username"]
string agent["impersonated"]
string agent["process"]
string agent["pid"]
string agent["tid"]
string agent["tags"]
string agent["os"]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


