added field selector to table panel, deprecated field panel
This commit is contained in:
@@ -1,8 +1,3 @@
|
||||
<kibana-panel ng-controller='fields' ng-init="init()">
|
||||
<ul class="unstyled" style="height:{{row.height}};overflow-y:auto;overflow-x:hidden;" ng-class="{'inline': panel.arrange == 'horizontal'}">
|
||||
<li ng-style="panel.style" ng-repeat="field in fields" >
|
||||
<i class="pointer" ng-class="{'icon-check': _.indexOf(active,field)>-1,'icon-check-empty': _.indexOf(active,field)<0}" ng-click="toggle_field(field)"></i>
|
||||
<a data-unique="1" bs-popover="'panels/fields/micropanel.html'" data-placement="{{panel.micropanel_position}}" ng-click="toggle_micropanel(field)" ng-class="{label: _.indexOf(active,field)>-1}">{{field}}</a>
|
||||
</li>
|
||||
</ul>
|
||||
<h4>The 'fields' panel is deprecated.</h4> The table panel now integrates a field selector.
|
||||
</kibana-panel>
|
||||
@@ -3,7 +3,7 @@
|
||||
|
||||
/*
|
||||
|
||||
## Fields
|
||||
## Fields (DEPRECATED)
|
||||
|
||||
|
||||
### Parameters
|
||||
@@ -25,10 +25,9 @@ angular.module('kibana.fields', [])
|
||||
.controller('fields', function($scope, eventBus, $timeout, dashboard, filterSrv) {
|
||||
|
||||
$scope.panelMeta = {
|
||||
status : "Deprecating Soon",
|
||||
description : "Allows for enabling and disabling of fields in the table panel as well as a "+
|
||||
"micro anaylsis panel for analyzing the events in the table panel. This panel will soon be"+
|
||||
"combined with the table panel"
|
||||
status : "Deprecated",
|
||||
description : "You should not use this table, it does not work anymore. The table panel now"+
|
||||
"integrates a field selector. This module will soon be removed."
|
||||
};
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user