Docs: add output widget .htaccess note for IE & FF

This commit is contained in:
Mottie 2014-05-23 11:21:07 -05:00
parent ff46cccb9d
commit d77dc71d55

View File

@ -287,6 +287,12 @@
widgets: ['zebra', 'output'] widgets: ['zebra', 'output']
}); });
});</pre> });</pre>
<h4>.htaccess</h4>
Do not forget to set Content-disposition headers in order to make downloads work properly in IE and FF. So <code>.htaccess</code> can look like:
<pre class="prettyprint lang-xml">&lt;FilesMatch "\.(?i:csv|txt)$"&gt;
ForceType application/octet-stream
Header set Content-Disposition attachment
&lt;/FilesMatch&gt;</pre>
</div> </div>
<h3><a href="#">Rowspan and colspan</a></h3> <h3><a href="#">Rowspan and colspan</a></h3>