interface CustomDmnJsModelerOptions {
    container: string;
    dmnJsOptions?: any;
    propertiesPanel?: string;
}

Properties

container: string

The ID of the div to use as host for the editor itself. The div must be present inside the page HTML.

dmnJsOptions?: any

The options passed to dmn-js. Will be merged with the options defined by this library, with the latter taking precedence in case of conflict. CAUTION: If you pass invalid properties, the modeler can break!

propertiesPanel?: string

The ID of the div to use as host for the properties panel. The div must be present inside the page HTML. If missing or undefined is passed, no properties panel will be initialized.

Generated using TypeDoc