mirror of
https://github.com/snipe/snipe-it.git
synced 2025-03-05 20:52:15 -08:00
Merge pull request #16287 from uberbrady/better_hover_titles
Fixes: [sc-28423] Better tooltips on lists, Bootstrap style
This commit is contained in:
commit
346aeeda71
|
@ -21,6 +21,7 @@ class AssetPresenter extends Presenter
|
|||
[
|
||||
'field' => 'checkbox',
|
||||
'checkbox' => true,
|
||||
'titleTooltip' => 'Toggle Select All' //FIXME - translate.
|
||||
], [
|
||||
'field' => 'id',
|
||||
'searchable' => false,
|
||||
|
|
|
@ -93,9 +93,36 @@
|
|||
locale: '{{ app()->getLocale() }}',
|
||||
exportOptions: export_options,
|
||||
exportTypes: ['xlsx', 'excel', 'csv', 'pdf', 'json', 'xml', 'txt', 'sql', 'doc'],
|
||||
onLoadSuccess: function () {
|
||||
onLoadSuccess: function () { // possible 'fixme'? this might be for contents, not for headers?
|
||||
$('[data-tooltip="true"]').tooltip(); // Needed to attach tooltips after ajax call
|
||||
},
|
||||
onPostHeader: function () {
|
||||
var lookup = {};
|
||||
var lookup_initialized = false;
|
||||
var ths = $('th');
|
||||
ths.each(function (index, element) {
|
||||
th = $(element);
|
||||
//only populate the lookup table once; don't need to keep doing it.
|
||||
if (!lookup_initialized) {
|
||||
// th -> tr -> thead -> table
|
||||
var table = th.parent().parent().parent()
|
||||
var column_data = table.data('columns')
|
||||
for (var column in column_data) {
|
||||
lookup[column_data[column].field] = column_data[column].titleTooltip;
|
||||
}
|
||||
lookup_initialized = true
|
||||
}
|
||||
|
||||
field = th.data('field'); // find fieldname this column refers to
|
||||
title = lookup[field];
|
||||
if (title) {
|
||||
th.attr('data-toggle', 'tooltip');
|
||||
th.attr('data-placement', 'top');
|
||||
// th.attr('title', title) //this causes 'double-titles' which looks gross
|
||||
th.tooltip({container: 'body', title: title});
|
||||
}
|
||||
})
|
||||
},
|
||||
formatNoMatches: function () {
|
||||
return '{{ trans('table.no_matching_records') }}';
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue