Skip to main content

Editing Restrictions

The designer allows you to restrict some editing behaviors.

Readonly Mode

You can set the isReadonly property in the start configuration to true to disable all editing behaviors.

const configuration = {
isReadonly: true,
// ...
};

Also, you may change the mode dynamically by calling the setIsReadonly method.

const designer = Designer.create(/* ... */);
// ...
designer.setIsReadonly(false);

Is Step Deletable

You can control which step may be deleted. If the step is not deletable, the designer will not show the delete button.

const configuration = {
steps: {
isDeletable: (step, parentSequence) => {
return step.type !== 'someType';
},
}
};

Can Delete Step

You can ask a user to confirm the step deletion. If the user cancels the deletion, the designer will not delete the step.

const configuration = {
steps: {
canDeleteStep: (step, parentSequence) => {
return confirm('Are you sure?');
},
}
};

Is Step Draggable

You can control which step may be dragged. If the step is not draggable, the designer doesn't allow to move it.

const configuration = {
steps: {
isDraggable: (step, parentSequence) => {
return step.type !== 'someType';
},
}
};

Can Insert Step

You can ask a user to confirm the step insertion. If the user cancels the insertion, the designer will not insert the step.

const configuration = {
steps: {
canInsertStep: (step, targetSequence, targetIndex) => {
return confirm('Are you sure?');
},
}
};

Can Move Step

You can ask a user to confirm the step moving. If the user cancels the moving, the designer will not move the step.

const configuration = {
steps: {
canMoveStep: (sourceSequence, step, targetSequence, targetIndex) => {
return confirm('Are you sure?');
},
}
};

Is Step Duplicable

The designer allows to duplicate a step by clicking the "Duplicate" option in the context menu. By default this option is disabled for all steps. To enable it, you need to pass a function to the isDuplicable property. This function should return true if the step is duplicable.

const configuration = {
steps: {
isDuplicable: (step, parentSequence) => {
return true;
},
},
// ...
};

Auto Select

By default, the designer selects a step when you drop it on the canvas. You can disable this behavior by setting the isAutoSelectDisabled property to false.

const configuration = {
steps: {
isAutoSelectDisabled: false,
// ...
}
};