First of all, I'm in love with this project! Thanks for building this awesome library.
I'm building a form and a want to add some quick reactions to a user's response, for example:
fieldset cf-questions="Nice name, {name}!&&What kind of activity are planning to do?"
input type="radio" name="atividade" id="intro-yes" value="yes"
label for="intro-yes" Recreational
input type="radio" name="atividade" id="intro-no" value="no"
label for="intro-no" Professional
input type="text" cf-questions="Cool! We're in the same boat!" cf-conditional-atividade="yes" value="ok"
input type="text" cf-questions="Uh... We gotta a professional here!" cf-conditional-atividade="no"
The problem is that when the reaction appears, the user has to type something to move to the next question. It would be good to pass an attribute like cf-input-skip to automatically move to next step.
I know that we have addRobotChatResponse('You have reached the end of the form!') but to do this I'll have to initiate the ConversationalForm manually and seems much more complicated than just using the markup to do it...
Am I doing this right? 😬
First of all, I'm in love with this project! Thanks for building this awesome library.
I'm building a form and a want to add some quick reactions to a user's response, for example:
The problem is that when the reaction appears, the user has to type something to move to the next question. It would be good to pass an attribute like
cf-input-skipto automatically move to next step.I know that we have
addRobotChatResponse('You have reached the end of the form!')but to do this I'll have to initiate the ConversationalForm manually and seems much more complicated than just using the markup to do it...Am I doing this right? 😬