kibana-123
Version:
Kibana is an open source (Apache Licensed), browser based analytics and search dashboard for Elasticsearch. Kibana is a snap to setup and start using. Kibana strives to be easy to get started with, while also being flexible and powerful, just like Elastic
29 lines (25 loc) • 927 B
HTML
<form
role="form"
ng-submit="opts.save()"
>
<div class="kuiLocalDropdownTitle">Save {{opts.dashboard.getDisplayName()}}</div>
<input
class="kuiLocalDropdownInput"
id="dashboardTitle"
type="text"
ng-model="opts.dashboard.title"
placeholder="Dashboard title"
input-focus="select"
>
<saved-object-save-as-check-box saved-object="opts.dashboard"></saved-object-save-as-check-box>
<div class="form-group">
<label>
<input type="checkbox" ng-model="opts.dashboard.timeRestore" ng-checked="opts.dashboard.timeRestore">
Store time with {{opts.dashboard.getDisplayName()}}
<kbn-info placement="bottom" info="Change the time filter to the currently selected time each time this dashboard is loaded"></kbn-info>
</label>
</div>
<button type="submit" ng-disabled="!opts.dashboard.title" class="btn btn-primary" aria-label="Save dashboard">
Save
</button>
</form>