|
@@ -713,8 +713,8 @@
|
|
|
},
|
|
|
formatter: function(value) {
|
|
|
var res = value;
|
|
|
- if(res.length > 8) {
|
|
|
- res = res.substring(0, 6) + "..";
|
|
|
+ if(res.length > 6) {
|
|
|
+ res = res.substring(0, 5) + "..";
|
|
|
}
|
|
|
return res;
|
|
|
}
|
|
@@ -838,8 +838,8 @@
|
|
|
// },
|
|
|
formatter: function(value) {
|
|
|
var res = value;
|
|
|
- if(res.length > 8) {
|
|
|
- res = res.substring(0, 6) + "..";
|
|
|
+ if(res.length > 6) {
|
|
|
+ res = res.substring(0, 5) + "..";
|
|
|
}
|
|
|
return res;
|
|
|
}
|