# Panel (adminus_nms_area_pick_solo)

Pick single Adminus NMS area and store it into output variable

# Screenshots

adminus_nms_area_pick_solo

# Config

adminus_nms_area_pick_solo:

	config:

		# Required | Type: string | Default: null
		# DSN string with API URL and credentials
		#
		### Examples
		### - https://user:pass@nms.ispalliance.cz/api/
		connection: "https://username:password@host"

		# Required | Type: string | Default: null
		# Name of variable in which picked ID should be stored
		output: "myvar"

		# Optional | Type: array | Default: []
		# Custom callbacks attached on picked
		callbacks: []

		# Optional | Type: string | Default: null
		# Custom script attached on picked
		#
		### Note
		### This option is not lattenized
		script: "NULL"

		# UI
		ui:

			# Optional | Type: string | Default: null
			# Panel title
			title: "Panel title"

			# Optional | Type: string | Default: null
			# Panel description
			description: "Panel description"
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36