We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi, I have a type question, but i dont know how to set values in edit mode, i need to have default select depends upon option
question
"yes" : { "type": "object", "properties": { "yes-date": { "type": "string", }, "yes-person" : { "type": "string", }, }, }, "no-notify" : { "type": "object", "properties": { "no-notify-date" : { "type": "string", } }, },` Form `{ "type": "questions", "key": "follow-up-appointment", "title": "Let's check your mood", "htmlClass": "col-sm-12", "items": [ { "type": "question", "title": "Are you happy?", "activeClass": "btn-success", "optionsType": "radiobuttons", "options": [ { "title": "Yes", "value": "yes", "next": "q2", }, { "title": "No", "value": "no", "next": "q3", } ] }, { "qid": "q2", "title": "If yes, :", "key": "yes", }, { "qid": "q3", "title": "If no", "key": "no-notify", } ] },` value "yes" : { "yes-date" : "<?=$formData['yes']['yes-date']??''?>", "yes-person" : "<?=$formData['yes']['yes-person']??''?>" }, "no-notify" : { "no-notify-date" : "<?=$formData['no-notify']['no-notify-date']??''?>", },
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi,
I have a type
question
, but i dont know how to set values in edit mode, i need to have default select depends upon optionThe text was updated successfully, but these errors were encountered: