Disable text input tab while showing quick replies in app platform

How can we disable to text input tab while bot shows the quick replies in app platform ?

Hey @Vishakha_K You can use hideinput in quick reply.

      app.sendQuickReplies(
                        {
                            title: app.renderMessage("quantityValidator-1"),
                            options: [
                                {
                                    title: "1",
                                    text : "1"
                                }
                               
                            ],
                        },
                        { hideInput: true }
                    );

In UI, you can try enabling HideInput.


I hope this will work.

2 Likes