Hello Thank you for your reply, I have no options for this when I try. I have no options on anything with the Adaptive Cards but I do when I use the sample Adaptive Card what could be wrong with my code.
{
"type": "AdaptiveCard",
"body": [
{
"type": "TextBlock",
"size": "Medium",
"weight": "Bolder",
"text": "Title"
},
{
"type": "ColumnSet",
"columns": [
{
"type": "Column",
"items": [
{
"type": "TextBlock",
"weight": "Bolder",
"text": "}Created by - ",
"wrap": true
},
{
"type": "TextBlock",
"spacing": "None",
"text": "Date Created - ",
"isSubtle": true,
"wrap": true
}
],
"width": "stretch"
}
]
},
{
"type": "FactSet",
"facts": [
{
"title": "Type ",
"value": ""
},
{
"title": "Location",
"value": ""
},
{
"title": "Product",
"value": ""
},
{
"title": "Order No",
"value": ""
},
{
"title": "User",
"value": ""
},
{
"title": "Required by",
"value": ""
}
]
},
{
"type": "TextBlock",
"text": "Cause:",
"wrap": true,
"spacing": "None",
"fontType": "Default",
"size": "Medium",
"weight": "Bolder",
"isSubtle": true
},
{
"type": "TextBlock",
"text": "Cause Text",
"wrap": true,
"spacing": "Small",
"fontType": "Default",
"size": "Default",
"weight": "Default",
"color": "Default",
"isSubtle": false
},
{
"type": "TextBlock",
"text": "Reason:",
"wrap": true,
"spacing": "Small",
"fontType": "Default",
"size": "Medium",
"weight": "Bolder",
"isSubtle": false
},
{
"type": "TextBlock",
"text": "Reason Text",
"wrap": true,
"fontType": "Default",
"size": "Default",
"spacing": "Small",
"weight": "Default",
"isSubtle": false
}
],
"$schema": "http://adaptivecards.io/schemas/adaptive-card.json",
"version": "1.4",
"actions": [
{
"type": "Action.ShowCard",
"title": "Allowed",
"card": {
"type": "AdaptiveCard",
"body": [
{
"type": "Input.Text",
"placeholder": "Comments",
"style": "Tel",
"isMultiline": true,
"id": "A_Comments"
}
],
"actions": [
{
"type": "Action.Submit",
"title": "Confirm"
}
]
}
},
{
"type": "Action.ShowCard",
"title": "Maybe",
"card": {
"type": "AdaptiveCard",
"body": [
{
"type": "Input.Text",
"placeholder": "Comments",
"isMultiline": true,
"id": "M_Comments"
}
],
"actions": [
{
"type": "Action.Submit",
"title": "Confirm"
}
]
}
},
{
"type": "Action.ShowCard",
"title": "Rejected",
"card": {
"type": "AdaptiveCard",
"body": [
{
"type": "Input.Text",
"placeholder": "Comments",
"isMultiline": true,
"id": "R_Comments"
}
],
"actions": [
{
"type": "Action.Submit",
"title": "Confirm"
}
]
}
}
]
}
Thank you in advance.