Hello @@Emīls Lipkovs, We have tried this with using below sample and it works fine from our end. Could you please try it once from your end and let us know if it is working or not?
here is demo manifest link-People-picker-adaptive-card.zip
People picker dropdown gets cut off at Adaptive Card border
I am trying to create a message extension App that would allow our IT Support to create a Jira ticket from selected message. App would work in a Team chat and is written in Python using the BotFramework SDK. After the ticket is created I wish to send an adaptive card as a reply in the chat that would offer some options to interact with the ticket.
Problem is that I want to show a People Picker in my adaptive card. The people picker works, but the problem is that the dropdown is cut off at the border of the adaptive card, so you can barely see it. I've tried different combinations of containers/columns stretch/auto bleed combinations and nothing helps.
I've seen online tutorials where the people picker goes beyond the borders of the Adaptive Card, but they are all 2-3 yrs old and the people picker goes upwards instead of downwards like mine.
I see this issue both in Windows Teams desktop client and web based.
Here is my adaptive card payload:
{
"$schema": "https://adaptivecards.io/schemas/adaptive-card.json",
"type": "AdaptiveCard",
"version": "1.5",
"body": [
{
"type": "Container",
"items": [
{
"type": "TextBlock",
"text": "Jira Ticket Created: [{ticket_id}](https://jira.com/browse/{ticket_id})",
"wrap": true,
"weight": "Bolder"
},
{
"type": "TextBlock",
"text": "Who should this ticket be assigned to?",
"wrap": true
},
{
"type": "ColumnSet",
"columns": [
{
"type": "Column",
"width": "auto",
"items": [
{
"type": "ActionSet",
"actions": [
{
"type": "Action.Submit",
"title": "Assign to Me",
"msTeams": {
"feedback": {
"hide": true
}
},
"data": {
"action": "assign_to_me",
"ticketId": "{ticket_id}"
}
},
{
"type": "Action.Submit",
"title": "Assign to Someone",
"msTeams": {
"feedback": {
"hide": true
}
},
"data": {
"action": "assign_to_someone",
"ticketId": "{ticket_id}"
}
}
],
"horizontalAlignment": "Left"
}
]
},
{
"type": "Column",
"width": "stretch",
"items": [
{
"type": "Input.ChoiceSet",
"id": "userPicker",
"style": "filtered",
"choices.data": {
"type": "Data.Query",
"dataset": "graph.microsoft.com/users"
},
"placeholder": "Select a user",
"errorMessage": "Please select a user",
"wrap": false,
"isMultiSelect": false
}
],
"height": "stretch",
"bleed": true
}
],
"style": "default",
"height": "stretch"
}],
"bleed": true
}
]
}
Any advice would be helpful!
EDIT:
Interestingly enough, static choices seem to work fine:
1 answer
Sort by: Most helpful
-
Sayali-MSFT 3,886 Reputation points Microsoft External Staff
2025-04-23T10:33:23.8766667+00:00