Skip to content

Commit

Permalink
the TableView is more compact and seems to work better here.
Browse files Browse the repository at this point in the history
  • Loading branch information
northben committed Feb 14, 2020
1 parent 0a79972 commit 15c1fdd
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions amelia/appserver/static/custom_table_row_expansion.js
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
require([
'splunkjs/mvc/tableview',
'splunkjs/mvc/eventsviewerview',
'splunkjs/mvc/searchmanager',
'splunkjs/mvc',
'underscore',
'splunkjs/mvc/simplexml/ready!'
],function(TableView, EventsViewerView, SearchManager, mvc, _) {
],function(TableView, SearchManager, mvc, _) {
var EventSearchBasedRowExpansionRenderer = TableView.BaseRowExpansionRenderer.extend({
initialize: function(args) {
this._searchManager = new SearchManager({
id: 'details-search-manager',
preview: false
});
this._chartView = new EventsViewerView({
this._chartView = new TableView({
managerid: 'details-search-manager',
type: "raw",
'raw.drilldown': "none"
drilldown: 'none',
fields: '_time, _raw'

});
},
canRender: function(rowData) {
Expand Down

0 comments on commit 15c1fdd

Please sign in to comment.