Hello webix friends.
the following problem.
Datatable with a columns of cells with editor: ‘popup’
And I have this:
webix.editors.$popup .text = {
id:‘contacts’,
view:‘popup’,
body:{
view:“textarea”,
readonly: true,
width:400,
height:120,
},
on:{
onBeforeShow: function(item,a,b){
$(document).ready(() => {
if (!$(item) || $(item).html().length === 0) {
return false;
}
});
},
onBlur: function(){
$$(‘contacts’).hide();
},
onHide: function(){
//$$(‘contacts’).destructor();
}
}
};
The datatable load dynamically! When I filter my datatable it may happen that there is no popup response while I click on the cell but also the popup position is somehow on another position.
sometime it comes and sometimes not… Do I have to refresh the datatable content after filtering? And how can I do this?
Thanks a lot…
Michael