Hmm, I use a table in an app and I have the "export", "open in search" and "inspect" options under that table.
Code I used :
var deps = [
"splunkjs/mvc",
"underscore",
"jquery",
"splunkjs/ready!",
"splunkjs/mvc/simplexml/element/table"
]; require(deps, function(
mvc,
_,
$
)
{
var TableElement = require("splunkjs/mvc/simplexml/element/table");
var mychart = new TableElement({
"id": "my_chart",
"managerid": "search1",
"el": $("#RenderPanel")
}, {tokens: true}).render();
});
"splunkjs/mvc/tableview" differs from "splunkjs/mvc/simplexml/element/table" - so try to use the simplexml-element.
... View more