Currently, our download functionality is to open the file download window using window.open("......"). This has become a problem with applications in https because IE has added security regarding file download popups. My question is, is there something in the SC library that I can use instead to request for downloads?
The sequence of events:
1. User selects a row in a listgrid.
2. User clicks on "Open" menu.
3. Menu action does a server request, a download path is generated, and sent back to client code. This value is then used as parameter in window.open.
I want to avoid having to use window.open.
The sequence of events:
1. User selects a row in a listgrid.
2. User clicks on "Open" menu.
3. Menu action does a server request, a download path is generated, and sent back to client code. This value is then used as parameter in window.open.
I want to avoid having to use window.open.
Comment