I have an IE11 specific issue in my web application, after i edit an input text field and save it i cannot edit again the fields in case the cursor was left in one of the text fields, but if i am focusing on something else before i do the save everything works normal.
When the text field is blocked i have to select another element which has an iframe children to make the fields editable.
After the save i load my partial views again to refresh the content of my page.
I have tried to set the focus on the element with the .focus() method after the save but it doesn't work. I have searched for answers and i found two similar issues, but i doesn't seem to solve my problem:
Update: I figured out that using kendoEditors, after a reload they sometimes become not editable and using the .refresh() this can be fixed, and if i apply the .refresh() in the console everything works fine but if i add to my code as part of the callback function of my reload sometimes it works sometimes not.