Categories | Question details Back To List | ||
Mouse scroll with splitAt/frozen columns Hi, I'm wondering why I cannot scroll down with my mouse when it's on the splited part of a grid. It's a good behavior?? Can we change this? Greetings PS : I'm using the lastest version of your component Answer posted by Alex (support) on May 18, 2009 05:15 Hello, this is a known split limitation. Unfortunately, there is not easy way to change this behavior. The ready can be provided only by additional fee (if you are interented in it, please contact us at sales@dhtmlx.com) You can try to implement this functionality yourself. The split part is the additional container with table inside it. It is available by the following property: var cont = grid._fake.entBox; You can try to set onmousewheel event handler for it and change the scroll position of the grid container. Grid container is grid.entBox |