认证0级讲师
This is very simple, you can set the formatter in the column but the input is a method. For example {name:"email",formatter:checkEmail}
Then customize a method named checkEmail
function checkEmail(x,y,z){// Then just return it directly after processing the result
return 'xxxxxxxxxxx'+x+'yyyyy';}
This is very simple, you can set the formatter in the column but the input is a method.
For example {name:"email",formatter:checkEmail}
Then customize a method named checkEmail
function checkEmail(x,y,z){
// Then just return it directly after processing the result
return 'xxxxxxxxxxx'+x+'yyyyy';
}