littlehome-eugene
littlehome-eugene
I'm having same problem, SouzaJBR 's answer is not working for me unfortunately..
``` dispatch(downloadSearchDeliveryGroup(params)).then((response) => { let filename = response.headers['content-disposition'].split('filename=')[1] || 'order.csv' // var bom = new Uint8Array([0xef, 0xbb, 0xbf]) var mime = 'text/csv; charset=utf-8' FileDownload('\uFEFF' + response.data.toString(), filename, mime) }) ```...
I used chrome I used microsoft excel (not sure which version, but I was on windows 10, the computer was bought less than 6 month, so fairly new version of...
@motevets We couldn't fix it using js-file-download ``` const bom = "\uFEFF" var csvString = response.data; var a = window.document.createElement('a'); a.setAttribute('href', 'data:text/csv; charset=utf-8,'+bom + encodeURIComponent(bom+csvString)); a.setAttribute('download', 'order.csv'); window.document.body.appendChild(a); a.click(); ```...
Oh I thought you wanted my solution.. ok i'll try what you suggested..
I changed above line to ` FileDownload(response.data, 'out.csv', 'text/csv;charset=utf-8', '\uFEFF')` and the file is not readable.. I didn't try this in your sandbox(?) I tried it on our test server
ProcessedImageField are field, and ImageSpec is not a field right? which means, generated watermark won't be available for long (it might be cached but it has to be generated again)...
Below is my implementation, but image is not wartermarked. I did get watermarked image when I supplied processors directly to the imagefield. ** edit ** nvm I didn't load the...
I find I can restart kernel using `jupyter-repl-restart-kernel` I 'd like to stop cell execution with `jupyter-repl-interrupt-kernel` but it doesn't seem to work that way..
I just had this error, and fixed by changing server port, it seems token is remembered by jupyter and I'm looking for ways to change it