Is it possible to keep the setting button always there
current only show when the screen is too small
Is it possible to keep the setting button in the quesiton always visible?
created 3 years ago
(modified 3 years ago)
Show previous comments
(0)
Comments
(0)
Sign in to comment on this post
Answers approved by surveyjs Support
Hello Lei,
Yes, it works in this way right now. We will need an option to make it works differently.
We will be back to you on this issue.
Thank you,
Andrew
SurveyJS Team
Comments
(1)
OL
3 years ago
Hello,
To solve your issue you can use the onElementAllowOperations event
JavaScriptcreator.onElementAllowOperations.add((sender, options) => {
options.allowEdit = true;
});
Olga,
SurveyJS Team