[open-ils-commits] [GIT] Evergreen ILS branch rel_3_0 updated. 4a5521ec38cdef5d47dd76b0b6bf994ba8998995
Evergreen Git
git at git.evergreen-ils.org
Mon Sep 24 17:02:31 EDT 2018
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Evergreen ILS".
The branch, rel_3_0 has been updated
via 4a5521ec38cdef5d47dd76b0b6bf994ba8998995 (commit)
from ea7de510338bd4c880ee41b9b5ab1ca3102f354f (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 4a5521ec38cdef5d47dd76b0b6bf994ba8998995
Author: Bill Erickson <berickxx at gmail.com>
Date: Mon Sep 24 16:19:33 2018 -0400
LP#1794176 Avoid capturing grid cell tooltip/display values
Remove the grid-tooltip logic that captured the cell content into a
template-level variable so the content only needed to be generated once
for both the tooltip and cell display. This logic fails to handle cases
where the cell content is dynamic, typically the result of row
attributes being modified via external process.
Signed-off-by: Bill Erickson <berickxx at gmail.com>
Conflicts:
Open-ILS/src/templates/staff/share/t_autogrid.tt2
Signed-off-by: Dan Wells <dbw2 at calvin.edu>
diff --git a/Open-ILS/src/templates/staff/share/t_autogrid.tt2 b/Open-ILS/src/templates/staff/share/t_autogrid.tt2
index 80c5430..d5f7f18 100644
--- a/Open-ILS/src/templates/staff/share/t_autogrid.tt2
+++ b/Open-ILS/src/templates/staff/share/t_autogrid.tt2
@@ -344,14 +344,14 @@
<!-- if the cell comes with its own template,
translate that content into HTML and insert it here -->
- <span ng-if="col.template" style="padding-left:5px; padding-right:10px;"
+ <span ng-if="col.template"
id="{{cellId(col, item)}}"
- ng-init="html_value=translateCellTemplate(col, item)">
+ style="padding-left:5px; padding-right:10px;">
<span tooltip-class="eg-grid-tooltip"
tooltip-class="eg-grid-tooltip"
tooltip-placement="top-left"
- uib-tooltip-html="cellOverflowed(cellId(col, item), 1) ? html_value : ''">
- <span ng-bind-html="html_value"></span>
+ uib-tooltip-html="getHtmlTooltip(col, item)">
+ <span ng-bind-html="translateCellTemplate(col, item)"></span>
</span>
</span>
@@ -359,13 +359,12 @@
pass through datatype-specific filtering. -->
<span ng-if="!col.template"
id="{{cellId(col, item)}}"
- ng-init="text_value = (itemFieldValue(item, col) | egGridValueFilter:col:item)"
- uib-tooltip="{{cellOverflowed(cellId(col, item), 1) ? text_value : ''}}"
+ uib-tooltip="{{cellOverflowed(cellId(col, item), 1) ? (itemFieldValue(item, col) | egGridValueFilter:col:item) : ''}}"
tooltip-class="eg-grid-tooltip"
tooltip-placement="top-left"
tooltip-class="eg-grid-tooltip"
style="padding-left:5px; padding-right:10px;">
- {{text_value}}
+ {{itemFieldValue(item, col) | egGridValueFilter:col:item}}
</span>
</div>
</div>
diff --git a/Open-ILS/web/js/ui/default/staff/services/grid.js b/Open-ILS/web/js/ui/default/staff/services/grid.js
index ce494da..6df298c 100644
--- a/Open-ILS/web/js/ui/default/staff/services/grid.js
+++ b/Open-ILS/web/js/ui/default/staff/services/grid.js
@@ -1094,6 +1094,13 @@ angular.module('egGridMod',
return val;
}
+ $scope.getHtmlTooltip = function(col, item) {
+ if ($scope.cellOverflowed($scope.cellId(col, item), 1)) {
+ return grid.getItemTextContent(item, col);
+ }
+ return "";
+ }
+
/**
* Fetches all grid data and transates each item into a simple
* key-value pair of column name => text-value.
-----------------------------------------------------------------------
Summary of changes:
Open-ILS/src/templates/staff/share/t_autogrid.tt2 | 13 ++++++-------
Open-ILS/web/js/ui/default/staff/services/grid.js | 7 +++++++
2 files changed, 13 insertions(+), 7 deletions(-)
hooks/post-receive
--
Evergreen ILS
More information about the open-ils-commits
mailing list