Hi ,
I want remove select box and replace it with static title like "Dropdown" or "Radio"etc
Regards,
Babin
Hi ,
I want remove select box and replace it with static title like "Dropdown" or "Radio"etc
Regards,
Babin
Hello,
Please read the following documentation topic. You will have to write the following code:
JavaScriptsurveyCreator.onElementAllowOperations.add(function (sender, options) {
//disable changing type
options.allowChangeType = false;
});
Thank you,
Andrew