survey-creator icon indicating copy to clipboard operation
survey-creator copied to clipboard

Add area "translation-tab-editor:table" for onSurveyInstanceCreated event

Open andrewtelnov opened this issue 1 year ago • 0 comments

Create a separate area for "translation-tab-editor:table" for translation editor in onSurveyInstanceCreated event. Here is the code that removes export/import actions:

  creator.onSurveyInstanceCreated.add((sender, options) => {
    if(options.area === "translation-tab-editor:table") {
      const actions = options.survey.navigationBar.actions;
      actions.splice(actions.length - 2, 2);
    }
  });

andrewtelnov avatar Mar 06 '24 13:03 andrewtelnov