Hi,
- Using Bot framework I'm creating an app, where I want Input.Choiceset placeholder should hold the value of Choiceset.
{
"type": "Input.ChoiceSet",
"id": "Owner",
"placeholder": "OwnerName","choices": []
}
----------------------------------
Choices ["title": "Sree", "Value": "Sree"
---------------------------------
Now the placeholder holds the value "OwnerName" when I run the code. I want the placeholde to hold value "Sree". Is there any way to achieve this?
2. Is there any way where we can make a field in bot framework as read only. Below is the code which I have used in Adaptivecard for the field. The don't want change the value of Owner and can we change the color
of placeholder value?
{
"type": "Input.Text",
"id": "Owner",
"placeholder": "Sree"
}
Thanks