hello, thank you for your work.
I have a problem since the update of chrome (57.0.2987.133) , when i try update the content.udpate in $.get the result it's strange. if i refresh the page sometimes the update don't work
`
updateList : function(model, context) {
if(index == undefined){index = model.paged;}
elm = this;
arg = {};
$.ajaxSetup({ cache: false });
$.get('/api/' + module_name + '/_customers', arg, function (data)
{
json = JSON.parse(data);
if (json.statut && json.statut == 'ok')
{
list = json.res.list;
context.updateModel(function(model,context)
{
model.list = list; // bug sometimes in the vue -> not display in the vue but stored in model.list
console.log(model.list);
});
}
return json;
}).fail(function () {
console.log('error');
});
}
It's a simple json result {name:'xxxxx',id:1},{name:'xxxxx',id:2}, the result is return by $.get and
when i try with explorer or firefox the code work fine. One idea please ?