| Date | Title | Type | ||
|---|---|---|---|---|
| 8/28/07 |
23689 - How can I download an Excel file from an ODS HTML Web page? You can place a download button on the HTML page that enables the reader to save the page as an Excel file. Use the Input tag along with the document.execCommand JavaScript command in the PREHTML= attribute of PROC ... http://support.sas.com/kb/23/689.html, 17KB |
Usage Note | ||
| 12/16/05 |
23670 - How can I create HTML forms with ODS? You can add an HTML form to any part of the HTML file by using PROC TEMPLATE or the DATA step. Below is an example of creating a form in the DATA step by using ODS. First, PROC TEMPLATE adds JavaScript to ... http://support.sas.com/kb/23/670.html, 19KB |
Usage Note | ||
| 9/8/05 |
24308 - How can I password-protect an ODS HTML output file? There is not a way to password protect an HTML file created by ODS HTML alone. Password protecting HTML files would usually require the use of a CGI. You can apply some simple JavaScript to an HTML page prevents ... http://support.sas.com/kb/24/308.html, 18KB |
Usage Note | ||
| 7/11/05 |
24068 - In ODS HTML, can I sort on columns by clicking on the columns headers like in Excel? This can be done by applying a behavior which is an HTC file (HTML component file). This HTC file includes JavaScript and XML tags. There are default behaviors built into the browser which do not require a separate HTC ... http://support.sas.com/kb/24/068.html, 20KB |
Usage Note | ||
| 3/8/05 |
23327 - How can I zoom the contents of the HTML file I am creating with ODS? There are a few ways to zoom the HTML file generated with ODS, but the method below uses JavaScript with the Onclick method. The Onclick method uses the Zoom style property with a value for the zoom. This can be a ... http://support.sas.com/kb/23/327.html, 17KB |
Usage Note | ||
| 8/20/04 |
23397 - For ODS HTML output, how can I collapse my BY-groups until I click on the procedure name? To have the tree collapsed by default in the table of contents, you can modify a JavaScript variable display_mode = "none" to display_mode = "block". This works in Internet Explorer. Follow these steps: Specify the ... http://support.sas.com/kb/23/397.html, 18KB |
Usage Note | ||
| 7/1/04 |
24061 - In ODS HTML, how can I make sure that the browser window always has focus or is on top? To make sure that the window opened will always have focus or will end up on top, specify the Onblur JavaScript handler with a value of self.focus. The attribute used to do this is tagattr=. Put this ... http://support.sas.com/kb/24/061.html, 17KB |
Usage Note | ||
| 7/1/04 |
24059 - In ODS HTML, How can I specify a value for the startup() and shutdown() functions? To provide a customized value for the startup() and shutdown() functions, specify the TAGATTR= attribute within the StartupFunction and ShutDownfunction style elements. These two style elements are available ... http://support.sas.com/kb/24/059.html, 17KB |
Usage Note | ||
| 7/1/04 |
24060 - In ODS HTML, how can I resize the browser window? Use the TEMPLATE procedure to pass the window.resizeTo function. Specify the function in the style element StartUpFunction, which causes the window to resize when the browser loads. The arguments passed are the ... http://support.sas.com/kb/24/060.html, 17KB |
Usage Note | ||
| 2/16/04 |
23665 - How do I generate dynamic HTML using JavaScript and PROC TEMPLATE? See Generating Dynamic HTML. See also the full PROC TEMPLATE FAQ and Concepts. http://support.sas.com/kb/23/665.html, 17KB |
Usage Note | ||