액션 버튼과 모달
액션 버튼을 클릭해서 모달을 띄우는 방법을 안내드립니다.
액션 버튼 클릭해서 모달 띄우기
actions 아래에 modal 키를 사용해서 버튼 클릭 시 모달을 띄울 수 있습니다.
yaml
actions:
- label: 티켓 추가
name: 티켓 추가하기
placement: top left
modal: true
type: query
resource: acme
sqlType: insert
sql: >
INSERT INTO tickets (created_at, written_by, title, description, status, type, type_id)
VALUES ( current_timestamp, :written_by, :title, :description, :status, 'order', :type_id)
forEach: true
params:
- key: written_by
- key: title
help: >
필드에 대한 도움말
- key: description
- key: status
- key: type_id
valueFromSelectedRows: true
valueFromSelectedRowsAs: id
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22