Search code examples
angularjskendo-uirefreshkendo-dropdownkendo-window

Kendo window refresh not working for IE


I am facing an issue with kendo window. It is not refreshing without debugging mode in IE 11. However the same refreshing mechanism is working if you press F12 and ran the url. My Kendo version is "2015.1.318".

Back ground : at my project , we have kendo window feature. In that window , we have a drop down. The kendo window is opening trough a button click event. Kendo window should refresh every time before open, so that drop down value will update properly.

Actually , I saw that , this is working perfectly with other browser like chrome and Mozilla. Even it is working with IE in debugging mode. Even before button click to open the kendo window, if you clear the browser cache , then also it is working.

My project is only supporting IE, So I need to resolve it without F12 work around or cache clear work around. I have used following technique to resolve.

1) read : { cache: false } 2) $("#window1).data("kendoWindow").refresh()

But not working. Any help ?


Solution

  • Thanks for contributing the answers.

    The issue is resolved by using POST method. Earlier I was using $http.get. But I changed it to $http.post. Now refresh is working as expected.

    Thanks again