Task Implementation in bpmn-js-properties-panel

Hi,
After the installation of bpmn-js modeler and the configuration of bpmn-js-properties-panel toolkit, I didn’t find the Details section in the General Tab used to define the implementation of the task service implementation details (in camunda for instance). What’s the reason of this problem ? This feature is not yet supported in bpmn-js-properties-panel toolkit ?

Regards,

1 Like

Make sure you include the Camunda properties provider:

import propertiesPanelModule from 'bpmn-js-properties-panel';
import propertiesProviderModule from 'bpmn-js-properties-panel/lib/provider/camunda';
import camundaModdlePackage from 'camunda-bpmn-moddle/resources/camunda';
import camundaModdleExtension from 'camunda-bpmn-moddle/lib';

const modeler = new BpmnJS({
  additionalModules: [
    propertiesPanelModule,
    propertiesProviderModule,
    camundaModdleExtension
  ],
  moddleExtensions: {
    camunda: camundaModdlePackage
  }
});

@philippfromme Thanks for the reply.

All the tabs related to camunda are there (input/output, extensions, Listeners) . The problem ithere is no Implementation section as the classic modeler to define how a task service should be executed (connectors, external services, expressions …). Do you know why ?

thank you in advance.

You’re saying this

image

part is missing?

@philippfromme yes exactly. what’s the problem ?
I forget to say that I’m using bpmn-js in an angular 6 project.
I have sthg like this (https://github.com/narve/angular-bpmn).

@housseminfo in tsconfig.json file add “resolveJsonModule”: true,
“esModuleInterop”: true

and import camunda moddler like
import camundaModdleDescriptor from ‘camunda-bpmn-moddle/resources/camunda.json’;