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

V2: Hide "Add Question" button on page if allowEdit set to false onElementAllowOperations event

Open andrewtelnov opened this issue 3 years ago • 0 comments

The following code should remove buttons: "Delete", "Duplicate" and "Add Question" on the first page in Creator surface. Right now we do not remove "Add Question" buttons.

  creator.onElementAllowOperations.add((sender, options) => {
    if(options.obj.isPage) {
      const isFirstPage = sender.survey.pages.indexOf(options.obj) === 0;
      if(isFirstPage) {
        options.allowDelete = false;
        options.allowEdit = false;
        options.allowCopy = false;
      }
    }
  });

andrewtelnov avatar Aug 12 '22 09:08 andrewtelnov