zoukankan      html  css  js  c++  java
  • datagrid前台修改format后的值

    function formatSh(value, row, index) {
    var d = "";
    if (value && !row.posted) {
    d = '<a href="javascript:check(' + value + ',' + index + ')" title="审核" >审核</a>';
    } else if (row.posted) {
    d = "(" + row.pzr + ")审核";
    }
    // var d = '<a href="#" title="查看" onclick ="ViewById(' + "'" + row+ "'" + ')">' + value + '</a>';
    return d;

    }

    上面是format函数

    下面是前台修改datagrid的值

    $('#tbmain').datagrid('beginEdit', index);
    $('#tbmain').datagrid('getRows')[index]['pzr'] = data;
    $('#tbmain').datagrid('getRows')[index]['posted'] = 1;
    $('#tbmain').datagrid('endEdit', index);

    要修改formatSh对应的pzr才会生效

  • 相关阅读:
    选择排序
    java面试题08
    java面试题07
    java面试题06
    java面试题05
    oop.1
    4
    3
    Struts1中actionform和action属于MVC哪一层
    mysql查询时间段的所有数据
  • 原文地址:https://www.cnblogs.com/xjt360/p/3993459.html
Copyright © 2011-2022 走看看