This commit is contained in:
@@ -1003,9 +1003,13 @@ function buildRecords(listData, columndefinitions, ridColumnOpenable) {
|
||||
);
|
||||
break;
|
||||
case 4: //text
|
||||
if (display.length > MAX_TEXT_COLUMN_LENGTH) {
|
||||
display = display.substring(0, MAX_TEXT_COLUMN_LENGTH) + "...";
|
||||
}
|
||||
// if (display.length > MAX_TEXT_COLUMN_LENGTH) {
|
||||
// display = display.substring(0, MAX_TEXT_COLUMN_LENGTH) + "...";
|
||||
// }
|
||||
display = window.$gz.util.truncateString(
|
||||
display,
|
||||
MAX_TEXT_COLUMN_LENGTH
|
||||
);
|
||||
break;
|
||||
case 5: //Integer
|
||||
//display is already set, just some styling to do
|
||||
|
||||
@@ -939,7 +939,7 @@ export default {
|
||||
this.pvm.languageName,
|
||||
this.pvm.currencyName
|
||||
),
|
||||
serviceDetails: x.serviceDetails
|
||||
serviceDetails: window.$gz.util.truncateString(x.serviceDetails, 100)
|
||||
};
|
||||
});
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user