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:

1

setPlaceholder

This method sets the textline placeholder text, text.

Example

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:

1

setSize

This method sets the size for the window.

2

close

Close window.

3

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.

Example

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:

1

setSize

This method sets the size for the window.

2

close

Close window.

3

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.

Example

Last updated