<?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 Create Help Panel in Freemaker in Alfresco Archive</title>
    <link>https://connect.hyland.com/t5/alfresco-archive/create-help-panel-in-freemaker/m-p/222953#M176083</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Folks,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I have created a popup Module similar to the out of the box workflow popup module in share and now I'm tring to put in a help icon and an attacted either popup window detailing the screen or a popup sumary panel similar to that used in Alfresco Explorer to show a summary of space and contant details.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Does anyone have any ideas on how I might do this.&amp;nbsp; Create a panel or popup window in freemaker from a small icon.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Gerald&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 10 May 2010 17:21:40 GMT</pubDate>
    <dc:creator>gmurphy</dc:creator>
    <dc:date>2010-05-10T17:21:40Z</dc:date>
    <item>
      <title>Create Help Panel in Freemaker</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/create-help-panel-in-freemaker/m-p/222953#M176083</link>
      <description>Folks,I have created a popup Module similar to the out of the box workflow popup module in share and now I'm tring to put in a help icon and an attacted either popup window detailing the screen or a popup sumary panel similar to that used in Alfresco Explorer to show a summary of space and contant d</description>
      <pubDate>Mon, 10 May 2010 17:21:40 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/create-help-panel-in-freemaker/m-p/222953#M176083</guid>
      <dc:creator>gmurphy</dc:creator>
      <dc:date>2010-05-10T17:21:40Z</dc:date>
    </item>
    <item>
      <title>Re: Create Help Panel in Freemaker</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/create-help-panel-in-freemaker/m-p/222954#M176084</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I'm not sure it's a question of "how do you do this with Freemaker", but rather "how do you do this with YUI".&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I would bring the help text back in a &amp;lt;div&amp;gt; with a known ID, then create a YUI pop-up panel from that in response to a click event from the icon. Take a look at the online YUI documentation for details: &lt;/SPAN&gt;&lt;A href="http://developer.yahoo.com/yui/2/" rel="nofollow noopener noreferrer"&gt;http://developer.yahoo.com/yui/2/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Mike&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 May 2010 19:13:00 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/create-help-panel-in-freemaker/m-p/222954#M176084</guid>
      <dc:creator>mikeh</dc:creator>
      <dc:date>2010-05-10T19:13:00Z</dc:date>
    </item>
    <item>
      <title>Re: Create Help Panel in Freemaker</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/create-help-panel-in-freemaker/m-p/222955#M176085</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Mike,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;What I have done is in the JS put in two lines &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;PRE class="language-none line-numbers"&gt;&lt;CODE&gt;this.widgets.infoPanel = new YAHOO.widget.Panel("infoPanel", {width:"320px", visible:true, constraintoviewport:true } );&lt;BR /&gt; this.widgets.infoPanel.render();&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;BR /&gt;&lt;SPAN&gt;and then I'm unsure how to bring this then into my html.ftl&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;What I have done there is that I was tring to create a link using an image to activate the Panel (Using Simple from the list of panels in link provided by Mike)&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Here is the link code in the html.FTL&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="language-none line-numbers"&gt;&lt;CODE&gt;&amp;lt;a href="#" onclick="infoPanel.show();return false"&amp;gt;&amp;lt;img src="${url.context}/themes/${theme}/images/help-icon-16.png" /&amp;gt;&amp;lt;/a&amp;gt;&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;BR /&gt;&lt;SPAN&gt;The issue I'm haveing now is that I'm getting an error infoPanel undefined where I clink on the image&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Has anyone any ideas on what I'm doing wrong&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Gerald&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 May 2010 08:54:11 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/create-help-panel-in-freemaker/m-p/222955#M176085</guid>
      <dc:creator>gmurphy</dc:creator>
      <dc:date>2010-05-11T08:54:11Z</dc:date>
    </item>
  </channel>
</rss>

