function update_grouplist_items(){
//console.log("calling1");
window.setTimeout(function(){
$$("cfg").reconstruct()
}, 3000);
}
$.ajax({
type: "POST",
xhrFields:{
withCredentials: true
},
beforeSend: function(request){
request.setRequestHeader("Content-type", 'application/json');
},
cache: false,
url:savedataUrl,
data : JSON.stringify(data, null, '\t'),
processData: false,
success: update_grouplist_items,
});
我正在尝试重新加载“cfg”组件(列表)成功。当我保持调试器控制台打开时,我看到它被刷新(添加了新项)。但是当控制台关闭时,我看到组件被刷新但没有项目添加到列表中。 (基本上我会看到组件闪烁)。我使用Internet Explorer作为我的浏览器。任何帮助将不胜感激。
答案 0 :(得分:1)
所有数据组件都提供clearAll和parse API,因此要以最有效的方式重新加载组列表,您需要使用类似下一个的内容
list.clearAll();
list.parse(new_data);
它将仅重新绘制数据并最大限度地减少闪烁。
https://docs.webix.com/api__link__ui.proto_clearall.html https://docs.webix.com/api__link__ui.proto_parse.html