search

Home  >  Q&A  >  body text

java - jqGrid传值后字符串拼接问题

PHP中文网PHP中文网2801 days ago636

reply all(1)I'll reply

  • 天蓬老师

    天蓬老师2017-04-18 10:47:58

    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';
    }

    reply
    0
  • Cancelreply