@memberjunction/ng-user-view-grid 0.9.13 → 0.9.14
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.
|
@@ -178,7 +178,7 @@ export class UserViewGridComponent {
|
|
|
178
178
|
if (c && c.EntityField && this.viewData[i] && this.viewData[i][c.EntityField.Name]) {
|
|
179
179
|
if (!c.hidden && c.EntityField.Name !== 'ID') {
|
|
180
180
|
const ef = c.EntityField;
|
|
181
|
-
return { field: c.EntityField.Name, value: ef.FormatValue(this.viewData[i][c.EntityField.Name],
|
|
181
|
+
return { field: c.EntityField.Name, value: ef.FormatValue(this.viewData[i][c.EntityField.Name], 0, undefined, 300) };
|
|
182
182
|
}
|
|
183
183
|
else
|
|
184
184
|
return { field: c.EntityField.Name, value: this.viewData[i][c.EntityField.Name] }; // hidden column, so just return the value, don't bother formatting
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@memberjunction/ng-user-view-grid",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.14",
|
|
4
4
|
"description": "MemberJunction: Angular Grid to display dynamic and saved user views for any entity in MemberJunction.",
|
|
5
5
|
"main": "./dist/public-api.js",
|
|
6
6
|
"typings": "./dist/public-api.d.ts",
|
|
@@ -20,9 +20,9 @@
|
|
|
20
20
|
"@angular/core": "^15.2.0",
|
|
21
21
|
"@angular/forms": "^15.2.0",
|
|
22
22
|
"@angular/router": "^15.2.0",
|
|
23
|
-
"@memberjunction/core": "^0.9.
|
|
24
|
-
"@memberjunction/ng-compare-records": "^0.9.
|
|
25
|
-
"@memberjunction/ng-container-directives": "^0.9.
|
|
23
|
+
"@memberjunction/core": "^0.9.23",
|
|
24
|
+
"@memberjunction/ng-compare-records": "^0.9.17",
|
|
25
|
+
"@memberjunction/ng-container-directives": "^0.9.10",
|
|
26
26
|
"@progress/kendo-angular-grid": "^12.1.0"
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
@@ -136,7 +136,7 @@ export class UserViewGridComponent implements OnInit, AfterViewInit {
|
|
|
136
136
|
if (c && c.EntityField && this.viewData[i] && this.viewData[i][c.EntityField.Name]) {
|
|
137
137
|
if (!c.hidden && c.EntityField.Name !== 'ID') {
|
|
138
138
|
const ef = c.EntityField;
|
|
139
|
-
return {field: c.EntityField.Name, value: ef.FormatValue(this.viewData[i][c.EntityField.Name],
|
|
139
|
+
return {field: c.EntityField.Name, value: ef.FormatValue(this.viewData[i][c.EntityField.Name], 0, undefined, 300)}
|
|
140
140
|
}
|
|
141
141
|
else
|
|
142
142
|
return {field: c.EntityField.Name, value: this.viewData[i][c.EntityField.Name]} // hidden column, so just return the value, don't bother formatting
|