Botframework 是否仍然需要增加input.text元素的大小? 我想增加输入框的大小,这样当我发送电子邮件时,用户可以输入信息,这是我能想到的最好方法,但它的大小不会改变。我觉得这根本不可能? { “类型”:“AdaptiveCard”, “版本”:“1.0”, “正文”:[ { “类型”:“容器”, “项目”:[ { “类型”:“Input.Text”, “id”:“multilineInputId”, “占位符”:“输入注释”, “isMultiline”:没错, “值”:“可编辑文本”, “高度”:“自动” } ] } ], “行动”:[ { “类型”:“Action.Http”, “标题”:“单击我!”, “方法”:“发布”, “url”:”https://contoso.com/api/...", “正文”:“, “标题”:[ { “名称”:“内容类型”, “值”:“应用程序/json” } ] } ] }

Botframework 是否仍然需要增加input.text元素的大小? 我想增加输入框的大小,这样当我发送电子邮件时,用户可以输入信息,这是我能想到的最好方法,但它的大小不会改变。我觉得这根本不可能? { “类型”:“AdaptiveCard”, “版本”:“1.0”, “正文”:[ { “类型”:“容器”, “项目”:[ { “类型”:“Input.Text”, “id”:“multilineInputId”, “占位符”:“输入注释”, “isMultiline”:没错, “值”:“可编辑文本”, “高度”:“自动” } ] } ], “行动”:[ { “类型”:“Action.Http”, “标题”:“单击我!”, “方法”:“发布”, “url”:”https://contoso.com/api/...", “正文”:“, “标题”:[ { “名称”:“内容类型”, “值”:“应用程序/json” } ] } ] },botframework,microsoft-teams,adaptive-cards,Botframework,Microsoft Teams,Adaptive Cards,这是Adaptive Cards团队正在进行的工作,但我记不起确切的时间表。有关更多信息,请参阅二月社区电话: 目前还不清楚这是否也会调整文本框,或者只是调整卡的大小本身,但在这两种情况下,请确保自适应卡本身至少为1.2(当前版本为1.0) I want to increase the size of the input box so when I email it it's actually usable for users to enter info, this is the best I

这是Adaptive Cards团队正在进行的工作,但我记不起确切的时间表。有关更多信息,请参阅二月社区电话:

目前还不清楚这是否也会调整文本框,或者只是调整卡的大小本身,但在这两种情况下,请确保自适应卡本身至少为1.2(当前版本为1.0)

I want to increase the size of the input box so when I email it it's actually usable for users to enter info, this is the best I could come up with but it's not changing size. I think it's not even possible?

{
    
    "type": "AdaptiveCard",
    "version": "1.0",
    "body": [
        {
            "type": "Container",
            "items": [
                {
                    "type": "Input.Text",
                    "id": "multilineInputId",
                    "placeholder": "enter comment",
                    "isMultiline": true,
                    "value": "EDITABLE TEXT",
                    "height":"auto"
                }
            ]
        }
    ],
    "actions": [
        {
            "type": "Action.Http",
            "title": "Click me!",
            "method": "POST",
            "url": "https://contoso.com/api/...",
            "body": "<body of the POST request>",
            "headers": [
                {
                    "name": "Content-Type",
                    "value": "application/json"
                }
            ]
        }
    ]
}