重命名并插入erro TreeStore ExtJS 4.1.1

时间:2012-09-08 03:58:52

标签: extjs4 rename extjs4.1 treepanel

晚上好人,

当我更新方法时,它不会保存所有模型项,如“tipoNo”和“pai”。有人知道我能做什么吗?

请求有效负载

这是请求中发送的信息。

{"parentId":1,"nome":"qwfqwfqw"}

型号:

我模特中的字段。

fields : [ {
    name : 'id',
    type : 'long'
},{
    name : 'pai',
    type : 'long'
}, {
    name : 'nome',
    type : 'string'
}, {
    name : 'tipoNo',
    type : 'string'
}, {
    name : 'leaf',
    type : 'boolean',
    convert : function(value, record) {
        var no = record.get('tipoNo');
        return (no == "CLIENTE" ? true : false);
    }
} ],

代理

代理服务器上的必备信息。

proxy : {
    type : 'rest',
    url : Webapp.link('node'),
    reader : {
        type : 'json',
        root : 'nodes',
        idProperty : 'id'
    },
    writer : {
        type : 'json',
        writeAllFields : false
    }
}

控制器方法

/**
 * Rename
 * 
 * @param {Ext.grid.plugin.CellEditing} editor
 * @param {Object} e                            
 */
updateList : function (editor, e) {
    var node = e.record;
    node.save({
        success: function(list, operation) {
            console.log("updated");
        },
        failure: function(list, operation) {
            var error = operation.getError(),
                msg = Ext.isObject(error) ? error.status + ' ' + error.statusText : error;

            Ext.MessageBox.show({
                title: 'Notificação',
                msg: msg,
                icon: Ext.Msg.ERROR,
                buttons: Ext.Msg.OK
            });
        }
    });
},

1 个答案:

答案 0 :(得分:0)

在这种情况下的解决方案:

/**
 * Executa a edição
 * 
 * @param {Ext.grid.plugin.CellEditing} editor
 * @param {Object} e                            
 */
updateList : function (editor, e) {
    var node = e.record;
    var me = this;
    var nodeTree = me.getNodeTree();

    var method = (node.data.id !== undefined ? 'PUT' : 'POST');
    var post = {
            id: (node.data.id !== undefined ? null : node.data.id),
            nome: node.data.nome,
            pai: (node.data.parentId == -1 ? null : node.data.pai),
            tipoNo: node.data.tipoNo
    };
    Ext.Ajax.request({
        url: Webapp.link("node"),
        headers: { 'Content-Type': 'application/json' }, 
        jsonData: post,
        method: method,
        success: function(response){
            var text = response.responseText;
            console.log(text);
            nodeTree.refreshView();
        }
    });

},