This is a migrated thread and some comments may be shown as answers.

IE11 bug with tabs and data transfer

2 Answers 128 Views
TabStrip
This is a migrated thread and some comments may be shown as answers.
Steven
Top achievements
Rank 1
Steven asked on 02 Aug 2019, 04:28 PM

We are currently utilizing Kendo version 2017.1.118, and I am experiencing some odd behavior in IE11 with tabs and data transferring between the grids.

When you are on tab 1 with a grid, and you dbl click an item it triggers my add function which adds that row to another grid on tab 2. The entire page then loses focus. I can no longer scroll the page, the grid, or even click my other tab unless I click somewhere in the window.

I initially solved this problem by utilizing the hack $("#tab1").trigger("click"); which would force a click. This enabled me to now be able to select tab 2, but for some reason it didn't fully enable focus back to the page, so I was still unable to scroll unless I clicked an element outside of the grid again. Unfortunately firing $("#tab1").trigger("click"); again did not solve the issue.

The main problem is that the page itself becomes unfocused when data is moved from one tab to another tab in IE11. I am not having this issue in any other browser and it only happens in IE11 when data is added to non-selected tab contents.

2 Answers, 1 is accepted

Sort by
0
Steven
Top achievements
Rank 1
answered on 02 Aug 2019, 04:54 PM

Also - it appears this specifically has to do only with the dbl click function below

$("#Grid").on("dblclick", "tr.k-state-selected", function () {
    addData();
});

Calling the addData function with a button click works fine.

0
Veselin Tsvetanov
Telerik team
answered on 06 Aug 2019, 09:06 AM
Hi Steven,

Could you, please, prepare and send us a small isolated runnable sample reproducing the issue in question? You could use our Dojo sandbox to create that sample. Please, remove any external dependencies from that sample and use sample data created locally to populate the Grids. This way we will be able to review and troubleshoot the problem observed.

Regards,
Veselin Tsvetanov
Progress Telerik
Get quickly onboarded and successful with your Telerik and/or Kendo UI products with the Virtual Classroom free technical training, available to all active customers. Learn More.
Tags
TabStrip
Asked by
Steven
Top achievements
Rank 1
Answers by
Steven
Top achievements
Rank 1
Veselin Tsvetanov
Telerik team
Share this question
or