<?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: Stored Process Web App Chrome Frames in Win10 in Developers</title>
    <link>https://communities.sas.com/t5/Developers/Stored-Process-Web-App-Chrome-Frames-in-Win10/m-p/437961#M5596</link>
    <description>&lt;P&gt;&lt;FONT face="verdana,geneva"&gt;This appears to be a problem that is corrected in the next release of SAS.&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="verdana,geneva"&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="verdana,geneva"&gt;Try&amp;nbsp;adjusting the zoom level of your browser to see if you can find a setting that provides a correctly sized frame.&amp;nbsp; &lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="verdana,geneva"&gt;Another &lt;STRONG&gt;&lt;EM&gt;possible&lt;/EM&gt;&lt;/STRONG&gt; workaround (not tested) is to specify a value for the BannerRows configuration parameter:&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="verdana,geneva"&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="verdana,geneva"&gt;&lt;STRONG&gt;Configuring the SAS Stored Process Web Application&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="verdana,geneva"&gt;&lt;A href="http://go.documentation.sas.com/?cdcId=itechcdc&amp;amp;cdcVersion=9.4&amp;amp;docsetId=stpug&amp;amp;docsetTarget=webappcfg.htm&amp;amp;locale=en#n0c9m4a6d4jo53n1hb5dpeyu6phh"&gt;http://go.documentation.sas.com/?cdcId=itechcdc&amp;amp;cdcVersion=9.4&amp;amp;docsetId=stpug&amp;amp;docsetTarget=webappcfg.htm&amp;amp;locale=en#n0c9m4a6d4jo53n1hb5dpeyu6phh&lt;/A&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="verdana,geneva"&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="verdana,geneva"&gt;Adjust the value until the frame is correctly sized.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="verdana,geneva"&gt;Vince DelGobbo&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="verdana,geneva"&gt;SAS R&amp;amp;D&lt;/FONT&gt;&lt;/P&gt;</description>
    <pubDate>Fri, 16 Feb 2018 13:28:14 GMT</pubDate>
    <dc:creator>Vince_SAS</dc:creator>
    <dc:date>2018-02-16T13:28:14Z</dc:date>
    <item>
      <title>Stored Process Web App Chrome Frames in Win10</title>
      <link>https://communities.sas.com/t5/Developers/Stored-Process-Web-App-Chrome-Frames-in-Win10/m-p/437789#M5595</link>
      <description>&lt;P&gt;I'm migrating to a new Win 10 PC, and having a problem when Chrome displays the HTML frames used by the default Stored Process Web App .&amp;nbsp; I think I've hit a chrome bug (interpreting the HTML generated by SAS).&amp;nbsp; Chrome&amp;nbsp;&lt;SPAN&gt;64.0.3282.167 (Official Build) (64-bit)&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If I go to&amp;nbsp;&lt;A href="https://myserver.com/SASStoredProcess/" target="_blank"&gt;https://myserver.com/SASStoredProcess/&lt;/A&gt; and click "list available stored processes" it brings up the default SPWA tree which has a frame for metadata folders / stored processes on the left, and a frame at the right for input parameters.&amp;nbsp; The HTML code for that page looks like:&lt;/P&gt;
&lt;PRE&gt;&amp;lt;html&amp;gt;&amp;lt;head&amp;gt;&amp;lt;title&amp;gt;Stored Processes&amp;lt;/title&amp;gt;&amp;lt;/head&amp;gt;
&amp;lt;script&amp;gt;
function stp_fixSize() {
var rectObject = window.top.frames[0].document.body.getBoundingClientRect();  document.body.rows = (rectObject.bottom - rectObject.top) + ", *"
}
&amp;lt;/script&amp;gt;
&amp;lt;frameset onload="stp_fixSize()" rows="75,*" class="" framespacing="1"&amp;gt;
  &amp;lt;frame name="_stpBanner" class="" frameborder="0" scrolling="no" noresize&amp;gt;&amp;lt;/frame&amp;gt;
&amp;lt;frameset cols="25%,*" class=""&amp;gt;
  &amp;lt;frame name="_stpTree" class="" frameborder="1" scrolling="auto"&amp;gt;&amp;lt;/frame&amp;gt;
  &amp;lt;frame name="_stpOutput" class="" frameborder="1" scrolling="auto"&amp;gt;&amp;lt;/frame&amp;gt;
&amp;lt;/frameset&amp;gt;
&amp;lt;/frameset&amp;gt;
&amp;lt;/html&amp;gt;
&lt;/PRE&gt;
&lt;P&gt;I wonder if someone with chrome and Win 10 could paste that html into a file and open it in chrome.&amp;nbsp; I ended up with the top frame taking about half the screen.&amp;nbsp; It works fine in IE.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm not a web guy, but I debugged a bit.&amp;nbsp; Looks like the problem is in the stp_fixsize function.&amp;nbsp; In chrome if I hardcode the value of doucument.body.rows to be a decimal with only 10 places, it works:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&amp;lt;html&amp;gt;&amp;lt;head&amp;gt;&amp;lt;title&amp;gt;Stored Processes&amp;lt;/title&amp;gt;&amp;lt;/head&amp;gt;
&amp;lt;script&amp;gt;
function stp_fixSize() {
var rectObject = window.top.frames[0].document.body.getBoundingClientRect();  document.body.rows = 50.1234567891 + ", *"
}
&amp;lt;/script&amp;gt;
&amp;lt;frameset onload="stp_fixSize()" rows="75,*" class="" framespacing="1"&amp;gt;
  &amp;lt;frame name="_stpBanner" class="" frameborder="0" scrolling="no" noresize&amp;gt;&amp;lt;/frame&amp;gt;
&amp;lt;frameset cols="25%,*" class=""&amp;gt;
  &amp;lt;frame name="_stpTree" class="" frameborder="1" scrolling="auto"&amp;gt;&amp;lt;/frame&amp;gt;
  &amp;lt;frame name="_stpOutput" class="" frameborder="1" scrolling="auto"&amp;gt;&amp;lt;/frame&amp;gt;
&amp;lt;/frameset&amp;gt;
&amp;lt;/frameset&amp;gt;
&amp;lt;/html&amp;gt;
&lt;/PRE&gt;
&lt;P&gt;But if I add a few more values after the decimal point, it breaks.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;My questions:&lt;/P&gt;
&lt;P&gt;1. Can anyone else with Win10 and chrome replicate this behavior?&lt;/P&gt;
&lt;P&gt;2. When I talk with the SAS server admin, is there a .html file template or similar somewhere they could edit, to round() or truncate() the value computed in the stp_fixsize() script?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 15 Feb 2018 21:05:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Developers/Stored-Process-Web-App-Chrome-Frames-in-Win10/m-p/437789#M5595</guid>
      <dc:creator>Quentin</dc:creator>
      <dc:date>2018-02-15T21:05:25Z</dc:date>
    </item>
    <item>
      <title>Re: Stored Process Web App Chrome Frames in Win10</title>
      <link>https://communities.sas.com/t5/Developers/Stored-Process-Web-App-Chrome-Frames-in-Win10/m-p/437961#M5596</link>
      <description>&lt;P&gt;&lt;FONT face="verdana,geneva"&gt;This appears to be a problem that is corrected in the next release of SAS.&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="verdana,geneva"&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="verdana,geneva"&gt;Try&amp;nbsp;adjusting the zoom level of your browser to see if you can find a setting that provides a correctly sized frame.&amp;nbsp; &lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="verdana,geneva"&gt;Another &lt;STRONG&gt;&lt;EM&gt;possible&lt;/EM&gt;&lt;/STRONG&gt; workaround (not tested) is to specify a value for the BannerRows configuration parameter:&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="verdana,geneva"&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="verdana,geneva"&gt;&lt;STRONG&gt;Configuring the SAS Stored Process Web Application&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="verdana,geneva"&gt;&lt;A href="http://go.documentation.sas.com/?cdcId=itechcdc&amp;amp;cdcVersion=9.4&amp;amp;docsetId=stpug&amp;amp;docsetTarget=webappcfg.htm&amp;amp;locale=en#n0c9m4a6d4jo53n1hb5dpeyu6phh"&gt;http://go.documentation.sas.com/?cdcId=itechcdc&amp;amp;cdcVersion=9.4&amp;amp;docsetId=stpug&amp;amp;docsetTarget=webappcfg.htm&amp;amp;locale=en#n0c9m4a6d4jo53n1hb5dpeyu6phh&lt;/A&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="verdana,geneva"&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="verdana,geneva"&gt;Adjust the value until the frame is correctly sized.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="verdana,geneva"&gt;Vince DelGobbo&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="verdana,geneva"&gt;SAS R&amp;amp;D&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 16 Feb 2018 13:28:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Developers/Stored-Process-Web-App-Chrome-Frames-in-Win10/m-p/437961#M5596</guid>
      <dc:creator>Vince_SAS</dc:creator>
      <dc:date>2018-02-16T13:28:14Z</dc:date>
    </item>
    <item>
      <title>Re: Stored Process Web App Chrome Frames in Win10</title>
      <link>https://communities.sas.com/t5/Developers/Stored-Process-Web-App-Chrome-Frames-in-Win10/m-p/437986#M5597</link>
      <description>&lt;P&gt;Thanks much&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13635"&gt;@Vince_SAS&lt;/a&gt;.&amp;nbsp; Turns out my chrome was set to zoom to 90%.&amp;nbsp; When I changed it to 100%, it resized correctly.&amp;nbsp; &amp;nbsp;If it becomes a problem for users, will submit a ticket to our admins to try adjusting banner size.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks again,&lt;/P&gt;
&lt;P&gt;-Q.&lt;/P&gt;</description>
      <pubDate>Fri, 16 Feb 2018 14:41:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Developers/Stored-Process-Web-App-Chrome-Frames-in-Win10/m-p/437986#M5597</guid>
      <dc:creator>Quentin</dc:creator>
      <dc:date>2018-02-16T14:41:13Z</dc:date>
    </item>
  </channel>
</rss>

