Hi Jordan,
1. This should be edited in the 'required' property of the question. For example:
API.addQuestionsSet('basicTemplate',
{
type: 'selectOne',
style:'multiButtons',
minWidth: '12%',
autoSubmit:true,
numericValues:true,
required:true,
errorMsg: {
required: '请回答这个问题'
},
help: '<%= pagesMeta.number < 3 %>'
});
2. This should be edited in the 'submitText' of the page. For example:
API.addPagesSet('basicPage',
{
decline:false,
submitText: '提交',
v1style:2,
numbered: false,
noSubmit:false //Change to true if you don't want to show the submit button.
});
3. This should be edited in the 'declineText' property of the
page. For example:
API.addPagesSet('basicPage',
{
decline:true,
declineText: '拒绝回答'
submitText: '提交',
v1style:2,
numbered: false,
noSubmit:false //Change to true if you don't want to show the submit button.
});
Let me know if this worked for you.
Best,
Mayan