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

org.javasimon.console.resource.js.javasimon-dummyPlugin.js Maven / Gradle / Ivy

There is a newer version: 4.2.0
Show newest version
"use strict";
/**
 * Plugin for example/demonstration purpose
 */
(function(domUtil, viewPluginMgr) {
	console.log("Loaded JavaSimon Dummy Plugin");
	// "dummy" is the plugin identifier (see DummyDetailPlugin Java class)
	viewPluginMgr.fnAddPluginRenderer("dummy",function(eTableBody, oDummy) {
		var row=this.fnAppendRow(eTableBody);
		// oDummy={message:"Hello World!"}
		this.fnAppendLabelValueCell(row,"Message", oDummy.message, 3);
	});
}(javasimon.DOMUtil, javasimon.ViewPluginManager));





© 2015 - 2024 Weber Informatics LLC | Privacy Policy