How to create a menu item on a kanban board using UI Builder?Issue <!-- /*NS Branding Styles*/ --> .ns-kb-css-body-editor-container { p { font-size: 12pt; font-family: Lato; color: #000000; } span { font-size: 12pt; font-family: Lato; color: #000000; } h2 { font-size: 24pt; font-family: Lato; color: black; } h3 { font-size: 18pt; font-family: Lato; color: black; } h4 { font-size: 14pt; font-family: Lato; color: black; } a { font-size: 12pt; font-family: Lato; color: #00718F; } a:hover { font-size: 12pt; color: #024F69; } a:target { font-size: 12pt; color: #032D42; } a:visited { font-size: 12pt; color: #00718f; } ul { font-size: 12pt; font-family: Lato; } li { font-size: 12pt; font-family: Lato; } img { display: ; max-width: ; width: ; height: ; } } How to create a menu item on a kanban board using UI Builder? Release<!-- /*NS Branding Styles*/ --> .ns-kb-css-body-editor-container { p { font-size: 12pt; font-family: Lato; color: #000000; } span { font-size: 12pt; font-family: Lato; color: #000000; } h2 { font-size: 24pt; font-family: Lato; color: black; } h3 { font-size: 18pt; font-family: Lato; color: black; } h4 { font-size: 14pt; font-family: Lato; color: black; } a { font-size: 12pt; font-family: Lato; color: #00718F; } a:hover { font-size: 12pt; color: #024F69; } a:target { font-size: 12pt; color: #032D42; } a:visited { font-size: 12pt; color: #00718f; } ul { font-size: 12pt; font-family: Lato; } li { font-size: 12pt; font-family: Lato; } img { display: ; max-width: ; width: ; height: ; } } Generic Resolution<!-- /*NS Branding Styles*/ --> .ns-kb-css-body-editor-container { p { font-size: 12pt; font-family: Lato; color: #000000; } span { font-size: 12pt; font-family: Lato; color: #000000; } h2 { font-size: 24pt; font-family: Lato; color: black; } h3 { font-size: 18pt; font-family: Lato; color: black; } h4 { font-size: 14pt; font-family: Lato; color: black; } a { font-size: 12pt; font-family: Lato; color: #00718F; } a:hover { font-size: 12pt; color: #024F69; } a:target { font-size: 12pt; color: #032D42; } a:visited { font-size: 12pt; color: #00718f; } ul { font-size: 12pt; font-family: Lato; } li { font-size: 12pt; font-family: Lato; } img { display: ; max-width: ; width: ; height: ; } } Suppose the requirement is to have a menu item on a kanban card to do a specific action and you need to define that here Follow these steps for that: 1. Define the menu item on the card Usually when you are working on UI builder with kanban board you have a client script to load the whole board. On that script, you need to define the menu item to use the action. Let's call this 'Test Action" You need to define that on the card.options card.options.menu_actions = [ { id: 'test_action', label: 'Test Action' } In this case, my script to load the board is onLoadBoardData After that is defined, you will have the three dots on the card with the menu action created 2. Create the action to be triggered. In this example, we will use a client script just to display something on the console to be sure the action is working fine Go to the Client scripts and add the script: Menu Action We will use this script to display "menu item selected' on the console 3. Define the declarative action: Test_actions Go to declarative actions and create a form action. (Information will be stored on sys_declarative_action_assignment) Create the Specific client action for that record: TEST_ACTIONS (Information will be stored on sys_declarative_action_payload_definition) 4. Go to the kanban defined and on the configure section click on the edit the declarative action map 5. Update the VTB#CARD MENU ITEM SELECTED with this information { "assignmentId": "", // sys_id field of sys_declarative_action_assignment record. "name": "", // action_key field value of sys_declarative_action_payload_definition record. "label": "", // label field of sys_declarative_action_assignment record. "actionType": "uxf_client_action", "actionDispatch": "", // action_key field value of sys_declarative_action_payload_definition record. "actionPayload": "" // Payload field of sys_declarative_action_payload_definition record. } Note: If you do not have that VTB#CARD MENU ITEM SELECTED, you can create there. You will have something like this: 6. Created handled event: TEST_ACTIONS Go to the body content and click on Events. On the Handled events add a new entry and be sure you add the fields used on the payload used on the declarative action 7. Created the event mapping for the handler TEST_ACTIONS to call the script Menu Action 8. Map the declarative action Go to the kanban defined and on the configure section click on the Configure declarative action event mappings Look for your action and select the TEST_ACTIONS created and click Done 9. Now, you can test the action and the console will display the message defined on the script when the action is selected.