That sould be navigationHeader . You can take a look at the (mako-) template that renderes the view at $SPLUNK_HOME/share/splunk/search_mrsparkle/view/dashboard.html and $SPLUNK_HOME/share/splunk/search_mrsparkle/view/search.html (search form).
Available regions for a dashboard (might not be complete):
appHeader
navigationHeader
viewHeader
splSearchControls-inline
mainSearchControls
panel_row{n}_col{n}[_grp{n}]
One option to position the content to the right of the Help | About Links is to add it before the AppBar:
<module name="StaticContentSample" layoutPanel="navigationHeader">
<param name="text"><![CDATA[ <span>|</span><a href="#"> Test</a> ]]></param>
</module>
<module name="AppBar" layoutPanel="navigationHeader"/>
and set the CSS (application.css) to float right:
.navigationHeader .StaticContentSample { float: right; }
Tweaking the padding/margin in the CSS might help in positioning it.
An easier option as well, is to just use JS to add the link to the menu. In application.js:
$('<a href="#">Test</a> <span>|</span>').prependTo(".AppBar .auxLinks");
or
$('<span>|</span> <a href="#">Test</a>').appendTo(".AppBar .auxLinks");
If you only want to do this in one view, you can do this by surround this statements with something like:
if($('body.splView-flashtimeline').length) { ... }
... View more