Adaptive card
4 Topics[bug] MS Teams for IOS, Adaptive Card action button is renders incorrect (trims)
Hello we have developing Teams bot, and main flow is using Adaptive Card with Adaptive actions. on Mobile version of MSTeams iOS(version 3.8.1), is renders incorrect (trims or event does not shown) screenshots below. On Adaptive Designer, Desktop Version, Web and Android is OK but on iOS we faced with problem. Here is Adaptive Card Json: { "type": "AdaptiveCard", "version": "1.2", "body": [ { "type": "ColumnSet", "columns": [ { "type": "Column", "width": "50px" }, { "type": "Column", "width": "stretch", "items": [ { "type": "TextBlock", "text": "Hello, ", "wrap": true }, { "type": "TextBlock", "text": "I am here to help you. Please choose one of the topics below to start", "wrap": true } ] } ] }, { "type": "Container", "id": "actionContainer", "items": [ { "type": "ColumnSet", "columns": [ { "type": "Column", "width": "auto", "items": [ { "type": "ActionSet", "actions": [ { "type": "Action.Submit", "data": { "type": "ShowCard", "keyCard": "@key1", "fromMenuKey": "@command1" }, "title": "[ Word1 word2 word 3]" } ], "spacing": "Small" } ], "spacing": "Small" }, { "type": "Column", "items": [ { "type": "TextBlock", "size": "Small", "weight": "Lighter", "text": "All necessary word \n word2 word3 word 4", "horizontalAlignment": "Right", "wrap": true, "spacing": "None" } ], "verticalContentAlignment": "Center", "selectAction": { "type": "Action.Submit", "data": { "type": "ShowCard", "keyCard": "@key2", "fromMenuKey": "@command2" }, "title": "[ Word1 Word2 Word3 Word6]" }, "width": "stretch" } ], "spacing": "Small", "separator": true }, { "type": "ColumnSet", "columns": [ { "type": "Column", "width": "auto", "items": [ { "type": "ActionSet", "actions": [ { "type": "Action.Submit", "data": { "type": "ShowCard", "keyCard": "@key3", "fromMenuKey": "@command3" }, "title": "[ word1 word2 word3 word6 ]" } ] } ], "spacing": "Small" }, { "type": "Column", "items": [ { "type": "TextBlock", "size": "Small", "weight": "Lighter", "text": "If you have word1 question word2 word3 word4 word5", "horizontalAlignment": "Right", "wrap": true, "spacing": "None" } ], "verticalContentAlignment": "Center", "selectAction": { "type": "Action.Submit", "data": { "type": "ShowCard", "keyCard": "@key4", "fromMenuKey": "@command4" }, "title": "[ Request word help ]" }, "width": "stretch" } ], "spacing": "Small", "separator": true } ] }, { "type": "ColumnSet", "id": "searchColumnset", "columns": [ { "type": "Column", "width": "auto" }, { "type": "Column", "width": "stretch", "items": [ { "type": "Input.Text", "id": "searchInputText", "placeholder": "Key word " } ] }, { "id": "searchColumn", "type": "Column", "width": "stretch", "items": [ { "type": "ActionSet", "actions": [ { "type": "Action.Submit", "data": { "type": "runDialog", "dialog": "SearchDialog", "fromMenuKey": "@command1" }, "title": "Search" } ] } ] }, { "type": "Column", "width": "auto", "height": "stretch" } ] }, { "type": "TextBlock", "id": "navigationTextBlock", "text": "Help" } ], "$schema": "http://adaptivecards.io/schemas/adaptive-card.json" }1.7KViews0likes2CommentsInitiate a link to a call in teams
Is there a way to initiate a deep link to a call just as in chat : https://teams.microsoft.com/l/chat/0/0?users= I am trying to add a button to adaptive card that initiates a call between 2 users on Microsoft Teams. I tried callto: [email address] but the link shows me : " Due to an internal error, this web page could not be loaded. We recommend that you close this page. " even though if I type the link directly to search bar in chrome, it redirects to starting a call in teams. but clicking on the ActionOpenURL button gives me the prev error. So I have 2 questions for now: is there a possible way to initiate a call link between 2 users and if not, how can I solve the callto problem?4.1KViews0likes0CommentsChannel welcome message to direct the user to a tab
I have created a new channel in our Corporate-wide supportteam called "Request Office 365 Group" and I would love to direct the users directly to the "Request Group" tab, where a simple form is attached. What's the best way to do that? Thanks in advance.6.7KViews1like1Comment