@davesplunk01, If you want to create Single Value through SplunkJS stack you can refer to SingleView documentation on WebFramework: http://docs.splunk.com/Documentation/WebFramework
Following is an example of JS script.
require([
"splunkjs/mvc/singleview",
"splunkjs/mvc/simplexml/ready!"
], function(SingleView) {
// Instantiate components
new SingleView({
id: "example-single",
managerid: "example-search",
beforeLabel: "Event count:",
el: $("#mysingleview")
}).render();
});
@davesplunk01, If you want to create Single Value through SplunkJS stack you can refer to SingleView documentation on WebFramework: http://docs.splunk.com/Documentation/WebFramework
Following is an example of JS script.
require([
"splunkjs/mvc/singleview",
"splunkjs/mvc/simplexml/ready!"
], function(SingleView) {
// Instantiate components
new SingleView({
id: "example-single",
managerid: "example-search",
beforeLabel: "Event count:",
el: $("#mysingleview")
}).render();
});
@davesplunk01, I have converted my comment to answer. Please accept if this is what you were looking for.