I have a choice list in my code as shown below:
If I try to click on any of the choice in Skype channel it doesn't gets clicked. In other channels its working perfectly fine. (Clicks and typing the choice) In Skype if I'll type the choice then it will work. Need to know why the click is not working in Skype channel. Anyone has faced similar issue?
[Prompt("Can you spare few minutes to give your feedback? {||}")]
public FeedbackOptions? feedbackValue { get; set; }
[Prompt("Please provide your Feedback {||}")]
public string feedback { get; set; }
[Pattern(RegexConstants.Email)]
[Prompt("Please provide your Email ID.{||}")]
public string emailID { get; set; }
public string ReportRequest = string.Empty;
My feedback formflow is as mentioned below:
var parser = new Parser();
return new FormBuilder<FeedbackForm>()
// .Message("Welcome to reporting information!!")
.Field(new FieldReflector<FeedbackForm>(nameof(feedbackValue))
.SetActive(state => state.AskToChooseReport) )
.Field(nameof(feedback), state => state.feedbackValue == FeedbackOptions.Sure)
.Field(nameof(emailID), state => state.feedbackValue == FeedbackOptions.Sure)
.Build();
Thanks & Regards, Sheveta