# Panel (pick_resolver)

Pick one of possible resolvers as a current step resolver

# Screenshots

pick_resolver

# Config

pick_resolver:

	config:

		# Optional | Type: bool | Default: false
		# Disallow selecting no resolver
		required: true

		# Optional | Type: bool | Default: false
		# Include all system users in selectbox
		#
		### Note
		### By default are used only users defined in process roles
		all: false

		# Optional | Type: bool | Default: true
		# Whether selectbox should be shown
		#
		### Note
		### Myself should be enabled if this option is disabled
		selectbox: true

		# Optional | Type: string | Default: null
		# Display button which sets current user as a resolver
		myself: "Select myself as resolver"

		# Optional | Type: array | Default: []
		# Custom callbacks attached to the button
		callbacks: []

		# Optional | Type: string | Default: null
		# Custom script attached on resolver 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"

			# Optional | Type: string | Default: null
			# Button text color
			color: "text-white"

			# Optional | Type: string | Default: null
			# Button background color
			background: "bg-indigo-800"

			# Optional | Type: string | Default: null
			# Icon name to display inside button
			icon: "fa/s/home"

			# Optional | Type: string | Default: null
			# Icon color
			iconColor: "white"

			# Optional | Type: string | Default: before
			# Icon position before or after text
			iconPosition: "before"
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67