1. 程式人生 > >EasyUI dataGrid 修改單元格值

EasyUI dataGrid 修改單元格值

$(function(){

// 單元格單擊事件
$("#dataGrid").datagrid({  
                onClickCell: function (rowIndex, field, value){
                var putValue = "V" === value?"":"V";
                $('#dataGrid').datagrid('getRows')[rowIndex][field] = putValue;
                $('#dataGrid').datagrid('refreshRow', rowIndex);
                },
                onClickRow: function (rowIndex, rowData) {
       $(this).datagrid('unselectRow', rowIndex);
   }
        });
                



});