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

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

The newest version!
var DmnViewer = require('dmn-js');


window.installDmnViewer = function(id, xml) {

	var viewer = new DmnViewer({ 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