<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: ods html tagset - table of contents not generated in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ods-html-tagset-table-of-contents-not-generated/m-p/64622#M7535</link>
    <description>Ok 1 more small problem.. I updated the tagset and for some reason even when the body_toc = 'no' the report is still pushed to the right as if the toc was on.. any ideas?</description>
    <pubDate>Thu, 19 Aug 2010 16:22:50 GMT</pubDate>
    <dc:creator>FrankE</dc:creator>
    <dc:date>2010-08-19T16:22:50Z</dc:date>
    <item>
      <title>ods html tagset - table of contents not generated</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ods-html-tagset-table-of-contents-not-generated/m-p/64619#M7532</link>
      <description>Hi guys,  I've found several examples of generating a table of contents with the html tagset but for some reason I can't seem to get it working.. Using SAS 9.2 I run:&lt;BR /&gt;
&lt;BR /&gt;
ods html file="u:\exampl1.html" options(body_toc='yes');&lt;BR /&gt;
proc print data=sashelp.class;run;&lt;BR /&gt;
proc print data=sashelp.class;run;&lt;BR /&gt;
ods _all_ close;&lt;BR /&gt;
&lt;BR /&gt;
The result is an html doc with both reports but no table of contents off to the side like I would expect.  What am I missing?</description>
      <pubDate>Mon, 16 Aug 2010 20:07:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ods-html-tagset-table-of-contents-not-generated/m-p/64619#M7532</guid>
      <dc:creator>FrankE</dc:creator>
      <dc:date>2010-08-16T20:07:56Z</dc:date>
    </item>
    <item>
      <title>Re: ods html tagset - table of contents not generated</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ods-html-tagset-table-of-contents-not-generated/m-p/64620#M7533</link>
      <description>Hi:&lt;BR /&gt;
  BODY_TOC is a valid sub-option for ODS HTMLPANEL, and it has been shown as a sub-option for the new HTML 5 tagset template ... but  it is not a sub-option that works with my current production version of the ODS HTML destination tagset (as delivered in 9.2.2).  &lt;BR /&gt;
&lt;BR /&gt;
You can generate an HTML 4 TOC with a "FRAMESET", but you must use different syntax:&lt;BR /&gt;
[pre]&lt;BR /&gt;
ods html path='c:\temp' (url=none)&lt;BR /&gt;
    file="exampbod.html" &lt;BR /&gt;
    contents="examptoc.html"&lt;BR /&gt;
    frame="exampfrm.html"&lt;BR /&gt;
    options(doc='Help');&lt;BR /&gt;
title 'Using regular ODS HTML';&lt;BR /&gt;
proc print data=sashelp.class;run;&lt;BR /&gt;
proc print data=sashelp.class;run;&lt;BR /&gt;
ods _all_ close;&lt;BR /&gt;
[/pre]&lt;BR /&gt;
 &lt;BR /&gt;
If you look in the SAS log, you will see the valid sub-options for the current ODS HTML destination. To see the TOC, open the FRAME= file -- that is the HTML &amp;lt;FRAME&amp;gt; file that defines how the BODY and CONTENTS files should be displayed.&lt;BR /&gt;
 &lt;BR /&gt;
If your question is about the examples that were in this paper -- &lt;BR /&gt;
&lt;A href="http://support.sas.com/resources/papers/proceedings10/005-2010.pdf" target="_blank"&gt;http://support.sas.com/resources/papers/proceedings10/005-2010.pdf&lt;/A&gt;&lt;BR /&gt;
that highlighted some of the new changes to the HTML tagset so it would be HTML 5 compliant and not require a FRAME file, then you might want to check out the zip file of examples that is available for download at this site:&lt;BR /&gt;
&lt;A href="http://support.sas.com/rnd/base/ods/odshtml/" target="_blank"&gt;http://support.sas.com/rnd/base/ods/odshtml/&lt;/A&gt;&lt;BR /&gt;
&lt;BR /&gt;
Generally, when new features like this are shown at SAS Global Forum it means that you must download an updated tagset template to replicate the paper's examples. And there is a TPL file in that zip download which I suspect contains the HTML 5 tagset template where BODY_TOC has been enabled.&lt;BR /&gt;
 &lt;BR /&gt;
cynthia</description>
      <pubDate>Mon, 16 Aug 2010 22:53:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ods-html-tagset-table-of-contents-not-generated/m-p/64620#M7533</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2010-08-16T22:53:40Z</dc:date>
    </item>
    <item>
      <title>Re: ods html tagset - table of contents not generated</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ods-html-tagset-table-of-contents-not-generated/m-p/64621#M7534</link>
      <description>As always, you've been a great help.  That was exactly the paper I was looking at and for the life of me couldn't figure out why it wasn't working.  Not having the updated html tagset was the issue.  Thanks!</description>
      <pubDate>Tue, 17 Aug 2010 15:22:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ods-html-tagset-table-of-contents-not-generated/m-p/64621#M7534</guid>
      <dc:creator>FrankE</dc:creator>
      <dc:date>2010-08-17T15:22:55Z</dc:date>
    </item>
    <item>
      <title>Re: ods html tagset - table of contents not generated</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ods-html-tagset-table-of-contents-not-generated/m-p/64622#M7535</link>
      <description>Ok 1 more small problem.. I updated the tagset and for some reason even when the body_toc = 'no' the report is still pushed to the right as if the toc was on.. any ideas?</description>
      <pubDate>Thu, 19 Aug 2010 16:22:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ods-html-tagset-table-of-contents-not-generated/m-p/64622#M7535</guid>
      <dc:creator>FrankE</dc:creator>
      <dc:date>2010-08-19T16:22:50Z</dc:date>
    </item>
    <item>
      <title>Re: ods html tagset - table of contents not generated</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ods-html-tagset-table-of-contents-not-generated/m-p/64623#M7536</link>
      <description>Hi:&lt;BR /&gt;
  You might wish to work with Tech Support on this one. If there is a problem in the new tagset template that needs to be fixed, this is the appropriate way to make that change happen.&lt;BR /&gt;
&lt;BR /&gt;
To open a track with Tech Support, fill out the form at this link:&lt;BR /&gt;
&lt;A href="http://support.sas.com/ctx/supportform/createForm" target="_blank"&gt;http://support.sas.com/ctx/supportform/createForm&lt;/A&gt;&lt;BR /&gt;
&lt;BR /&gt;
(and be sure to let them know that you are using the new version of the tagset template and possibly reference your forum post in the track.)&lt;BR /&gt;
 &lt;BR /&gt;
cynthia</description>
      <pubDate>Thu, 19 Aug 2010 19:18:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ods-html-tagset-table-of-contents-not-generated/m-p/64623#M7536</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2010-08-19T19:18:39Z</dc:date>
    </item>
  </channel>
</rss>

