All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.orienteer.wicketbpmnio.component.cmmnviewer.js Maven / Gradle / Ivy

The newest version!
var CmmnViewer = require('cmmn-js');

window.installCmmnViewer = function(id, xml) {

	var viewer = new CmmnViewer({ container: '#' + id });

	viewer.importXML(xml, function(err) {

	  if (!err) {
	  	console.log('success');
	  } else {
	    console.log('something went wrong:', err);
	  }
	});
};




© 2015 - 2025 Weber Informatics LLC | Privacy Policy