Last active
August 29, 2015 14:06
-
-
Save roman0x58/fad107a17a0b56e51231 to your computer and use it in GitHub Desktop.
ExtJs File Download
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Port of https://github.com/filamentgroup/jQuery-File-Download/blob/master/jQuery.download.js | |
download = (url, data, method) -> | |
#url and data options required | |
if url and data | |
#data can be string of parameters or array/object | |
data = (if typeof data is "string" then data else Ext.Object.toQueryString(data)) | |
#split params into form inputs | |
inputs = "" | |
Ext.each data.split("&"), -> | |
pair = @split("=") | |
inputs += "<input type=\"hidden\" name=\"" + pair[0] + "\" value=\"" + pair[1] + "\" />" | |
form = Ext.DomHelper.append(Ext.getBody(), "<form action=\"" + url + "\" method=\"" + (method or "post") + "\">" + inputs + "</form>", yes) | |
form.dom.submit() | |
form.destroy() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment