https://snippet.dhtmlx.com/m2fivsfa
What to do? 
Unfortunaetly this is a designed behavior.
Itβs wrong behavior. 
I found this solution: attach plugin jquery.mousewheel.js
gridElement.find(".dhx_grid-fixed-cols").mousewheel((event, delta) => {
let obj = $(event.target).closest(".dhx_grid-content").find(".dhx_grid-body").get(0);
obj.scrollTop = obj.scrollTop + (-120 * delta);
});