<?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: Disable selection for ods html in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Disable-selection-for-ods-html/m-p/151651#M11688</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi:&lt;/P&gt;&lt;P&gt;&amp;nbsp; If there's a JavaScript or scripting way to do what you want, or an HTML5 way to do what you want, you might be able to work with Tech Support to find it. When I was working on the ODS book, we used CODE= option to pass in some JavaScript for the browser, you might be able to do something like that...but my scripting language for browsers is limited to putting a counter or a button on the bottom of a page or designing an HTML form with an &amp;lt;ACTION&amp;gt; tag.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cynthia&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 03 Feb 2014 16:54:09 GMT</pubDate>
    <dc:creator>Cynthia_sas</dc:creator>
    <dc:date>2014-02-03T16:54:09Z</dc:date>
    <item>
      <title>Disable selection for ods html</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Disable-selection-for-ods-html/m-p/151648#M11685</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all..&lt;/P&gt;&lt;P&gt;Is there any way that i can read protect my ods html outputs.. i.e. disable selection of the reports that i print in ods html .&lt;/P&gt;&lt;P&gt; If someone has done something in these lines maybe you could point me in the right direction.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Jan 2014 07:37:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Disable-selection-for-ods-html/m-p/151648#M11685</guid>
      <dc:creator>NN</dc:creator>
      <dc:date>2014-01-24T07:37:46Z</dc:date>
    </item>
    <item>
      <title>Re: Disable selection for ods html</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Disable-selection-for-ods-html/m-p/151649#M11686</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi:&lt;/P&gt;&lt;P&gt;&amp;nbsp; As far as I know, there are no ODS options to do this for ODS HTML. However, if you know system commands and can issue system commands, I suppose that after your job runs, you could issue an operating system command to make the files read-only.&lt;/P&gt;&lt;P&gt;cynthia&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Jan 2014 17:24:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Disable-selection-for-ods-html/m-p/151649#M11686</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2014-01-24T17:24:10Z</dc:date>
    </item>
    <item>
      <title>Re: Disable selection for ods html</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Disable-selection-for-ods-html/m-p/151650#M11687</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks cynthia.. But what i was looking for was an option that would disable the user from selecting numbers or tables printed on an ods html.&lt;/P&gt;&lt;P&gt;I was able to get some commands and implement it in template. It does work to some extent but is not foolproof.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: Zurich BT;"&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; proc template;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; define style test;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; parent=styles.normal;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; style body from body /&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; prehtml="&amp;lt;div &lt;BR /&gt;&amp;nbsp; style='-moz-user-select: none; -webkit-user-select: none; -ms-user-select:none; user-select:none;' &lt;BR /&gt;&amp;nbsp; unselectable='on'&lt;BR /&gt;&amp;nbsp; onselectstart='return false;' &lt;BR /&gt;&amp;nbsp; oncontextmenu='return false;'&lt;BR /&gt;&amp;nbsp; onmousedown='return false;'&lt;BR /&gt; oncopy='return false;'&lt;BR /&gt; oncut='return false;'&lt;BR /&gt; onpaste='return false;'&lt;BR /&gt; &amp;gt;";&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; style body from body /&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; posthtml="&amp;lt;/div&amp;gt;";&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; end;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; run;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: Zurich BT;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: Zurich BT;"&gt;ods html file="/MYPATH/TEST.HTML" Style=test;&lt;BR /&gt;proc report data=sashelp.class;&lt;BR /&gt;run;&lt;BR /&gt;ods html close;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Feb 2014 15:37:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Disable-selection-for-ods-html/m-p/151650#M11687</guid>
      <dc:creator>NN</dc:creator>
      <dc:date>2014-02-03T15:37:40Z</dc:date>
    </item>
    <item>
      <title>Re: Disable selection for ods html</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Disable-selection-for-ods-html/m-p/151651#M11688</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi:&lt;/P&gt;&lt;P&gt;&amp;nbsp; If there's a JavaScript or scripting way to do what you want, or an HTML5 way to do what you want, you might be able to work with Tech Support to find it. When I was working on the ODS book, we used CODE= option to pass in some JavaScript for the browser, you might be able to do something like that...but my scripting language for browsers is limited to putting a counter or a button on the bottom of a page or designing an HTML form with an &amp;lt;ACTION&amp;gt; tag.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cynthia&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Feb 2014 16:54:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Disable-selection-for-ods-html/m-p/151651#M11688</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2014-02-03T16:54:09Z</dc:date>
    </item>
  </channel>
</rss>

