Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
425
synchronized scrolling
posted

I know this has been asked before and I have found the following threads

http://forums.infragistics.com/forums/p/12390/46232.aspx#46232

http://forums.infragistics.com/forums/t/11818.aspx

but I still can't get a function to be called from the DivElement.onscroll event.  The code is the same as in the above links but here it is again.

 function window.onload()

{

var grid = igtbl_getGridById('mygrid');var odivElem = grid.DivElement;

odivElem.onscroll = test;

 }

 

function test()

{

alert("Test fn")

}

I am using 8.2 with fixed headers and stationary margins.  The first 5 columns are fixed so only the last 10 columns scroll.  I turned that off but it didn't seem to help.

Thanks,

 Eric