Used webix,to create datatable that contains combo editor. These combo has drop down list, it gets cut when we enter any key. As these list is dynamically generated. I want to assign some fixed height for this list. I used below code,
on:{
onkeypress:function(){
$('.webix_popup').css("height","100px");
$('.webix_list').css("height","100px");
}
}
I tried the above code but it didn't work for all keys, it works when i entered c, d, g, m, n, p, q key from keyboard. I am not getting these behavior. Please can anybody tell me the solution.