[Ticket cloned from T5087: Survey Logic Customization]
Thanks Serge,
I want the survey logic tab to show after the SurveyDesigner tab
Please give me a solution and do the needful.
For ref find the attached screenshot.
[Ticket cloned from T5087: Survey Logic Customization]
Thanks Serge,
I want the survey logic tab to show after the SurveyDesigner tab
Please give me a solution and do the needful.
For ref find the attached screenshot.
Hello,
To change SrveyCreator tabs order you can change its array manually and re-render creator (something like below). Here is live sample in plunker
JavaScriptvar tempTab = creator.tabs()[1];
creator.tabs()[1] = creator.tabs()[2];
creator.tabs()[2] = tempTab;
creator.render();
Please, note, in order to use SurveyJS Creator on your own site you should purchase license per each developer. Unfortunately, we can't recognize your license. Could you back to this thread from email with active SurveyJS Creator license?
Thanks, Alex
SurveyJS Team