Question T5214
Visible to All Users

How to reorder SurveyJS Creator tabs?

created 4 years ago (modified 4 years ago)

[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.

Answers approved by surveyjs Support

created 4 years ago

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

JavaScript
var tempTab = creator.tabs()[1]; creator.tabs()[1] = creator.tabs()[2]; creator.tabs()[2] = tempTab; creator.render();

Clipboard-File-1.png

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