如下拿出行列出來后請問如何根據這個值改變對應單元格的內容?    function cellclick(grid, rowIndex, columnIndex, e) {
        var record = grid.getStore().getAt(rowIndex);   //Get the Record
        var fieldName = grid.getColumnModel().getDataIndex(columnIndex); //Get field name
        var data = record.get(fieldName);
        Ext.MessageBox.alert("show","当前选中的数据是:"+data + "行:"+rowIndex+"列:"+columnIndex);
    }