- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
cjpomer
Explorer
02-17-2014
02:37 PM
Is it possible to use Backbone.Router from the Web Framework to update URL's based on selections made to a particular view?
1 Solution
- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
cjpomer
Explorer
03-05-2014
09:37 AM
{% block js %}
{# JavaScript goes here #}
<script>
// Load the required libraries
var deps = [
"splunkjs/ready!",
"backbone"
];
require(deps, function(mvc, Backbone) {
var Router = Backbone.Router.extend({
routes: {
},
tokens: function(token) {
}
});
var router = new Router();
)};
- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
cjpomer
Explorer
03-05-2014
09:37 AM
{% block js %}
{# JavaScript goes here #}
<script>
// Load the required libraries
var deps = [
"splunkjs/ready!",
"backbone"
];
require(deps, function(mvc, Backbone) {
var Router = Backbone.Router.extend({
routes: {
},
tokens: function(token) {
}
});
var router = new Router();
)};
- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ineeman

Splunk Employee
02-17-2014
05:37 PM
It is certainly possible, and the regular examples should work. I don't have an example handy right now, but if I find one I'll update my answer.
- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
cjpomer
Explorer
02-17-2014
06:00 PM
I was looking for an example...
