Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Disable button once clicked MS bot framework

I am creating chatbot application using MS bot framework. In that, I want to disable both buttons once Yes or No is clicked.

enter image description here

like image 387
Vigneswaran A Avatar asked Sep 16 '25 02:09

Vigneswaran A


1 Answers

Sorry but the webchat (and other channels) does not support what you want to do, even if it would be useful for many cases.

There is a sort of workaround if you really need to have buttons that cannot be used: use SuggestedActions (see doc here), it will look like the following:

enter image description here

Once clicked the buttons disappear.

like image 130
Nicolas R Avatar answered Sep 17 '25 16:09

Nicolas R