chaixw007 2016-12-06 09:46 采纳率: 57.1%
浏览 1091
已采纳

easyui Treegrid 小问题来看看

图片说明

上级科目怎么动态显示科目名称啊

  • 写回答

3条回答 默认 最新

  • 斯洛文尼亚旅游 2016-12-07 01:07
    关注

    treegrid继承自datagrid,datagrid的方法也适用于treegrid,直接更新记录中上级科目中的列值就行了

     updateRow  param   Update the specified row, the param contains following properties:
    index: the row index to be updated.
    row: the new row data.
    
    Code example:
    
    $('#dg').datagrid('updateRow',{
        index: 2,
        row: {
            name: 'new name',
            note: 'new note message'
        }
    });
    
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?