Datatable cell update sends ajax request as default behavior

Hi, I couldn’t find such behavior description in doc. When I edit cell, ajax request with PUT is sent to server, I have no appropriate fields for it.

That is my datatable

var groupsView = {
        rows:[
            { view: "template", template: "", height: 45 },
            {
                id: "groups",
                view:"datatable",
                type: "space",
                width: 450,
                visibleBatch:1,
                columns:[
                    { id:"id", batch: 2 },
                    { id:"group_name",  	editor:"text", header:"Group name", width: 310, },
                    { id:"hosts",           header:{ text: "Hosts", css:{"text-align":"center"} }, width: 60, css:{'text-align':'center'} },
                    { id:"support_cost",    editor:"text", header:{ text: "Tax", css:{"text-align":"center"} },   width: 80, css:{'text-align':'center'} }
                ],
                editable:true,
                editaction:"dblclick",
                select:true,
                on:{
                    'onItemClick': function(row) {
                        $$("hostsView").parse(webix.ajax().get("/host/list/?gid="+this.getItem(row).id));
                        $$("usersView").parse(webix.ajax().get("/user/list/?gid="+this.getItem(row).id));
                    },
                    'onSelectChange': function(row) {
                        $$("hostsView").clearAll();
                        $$("usersView").clearAll();
                    }
                },
            }
        ]
    };

sorry for ugly view… couldnt find how to write code correctly…

If save property specified, it is the default behavior. The data loading/saving models are concisely described here.

However, I don’t see the related properties in the above configuration. If the current behavior inappropriate, could you please specify your data loading and saving pattern?

couldnt find how to write code correctly

Just enclose the code by ~~~.

it was my mistake, question can be closed. Listopad, you best!