@trudb/tru-common-lib 0.1.885 → 0.1.887
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -7095,7 +7095,7 @@ class TruDataGrid {
|
|
|
7095
7095
|
onCellMouseOver(e) {
|
|
7096
7096
|
let targetElement = e.event.target;
|
|
7097
7097
|
if (targetElement &&
|
|
7098
|
-
!
|
|
7098
|
+
!targetElement.classList.contains('ag-cell-popup-editing') &&
|
|
7099
7099
|
e.data.$entity.entityAspect.hasValidationErrors) {
|
|
7100
7100
|
if (!targetElement.classList.contains('ag-cell'))
|
|
7101
7101
|
targetElement = targetElement.closest('.ag-cell');
|
|
@@ -10658,7 +10658,7 @@ class TruFormatter {
|
|
|
10658
10658
|
datetimeShort = (cfg) => {
|
|
10659
10659
|
var v = cfg.$;
|
|
10660
10660
|
if (!v)
|
|
10661
|
-
return '
|
|
10661
|
+
return 'mm/dd/yyyy hh:mm a';
|
|
10662
10662
|
return this.formatDate(v, 'MM/dd/yyyy hh:mm a');
|
|
10663
10663
|
};
|
|
10664
10664
|
datetimespanShort = (cfg) => {
|