I use igGrid with selection option in IE11.
Step 1: make horizontal scroll to right position.
Step 2: Click on 1 row of igGrid
Result : horizontal scroll back to left position.
Could you please show to me how to keep position of horizontal scroll when i click to select 1 row of igGrid ? (Browser : IE 11).
Please confirm below sample file
igScrollSample.zip
Hello Hoan Nguyen,
The issue you pointed out is a limitaion in IE11.
A similar topic was discussed here:
https://es.infragistics.com/community/forums/f/ignite-ui-for-javascript/111015/iggrid-row-selection-problem-cause-auto-focus-first-cell-problem-when-have-horizontal-scrollbar
And here is a document which mentions this limitation:
https://www.igniteui.com/help/iggrid-known-issues#selecting-rows-ie
Here are workarounds:
$("#grid").igGrid({ // ... features: [ { name: "Selection", // Workaround 1 activation: false, // Or Workaround 2 //mode: "cell", } ] // ... });
Could you work it around by either the workaround 1 or the workaround 2?
the workaround 1 work for me.
Thank you so much!
Thank you for confirmation.
I'm glad to hear that it works for you.